blob: 80b95de3d6793ed4f67686184e9d431dcddda17a [file] [log] [blame]
[email protected]f1c102b2013-02-15 07:44:121// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_EXTENSIONS_APP_WINDOW_CONTENTS_H_
6#define CHROME_BROWSER_EXTENSIONS_APP_WINDOW_CONTENTS_H_
7
8#include <vector>
9
[email protected]d53417e2013-07-01 07:07:3910#include "apps/shell_window.h"
[email protected]f1c102b2013-02-15 07:44:1211#include "base/basictypes.h"
12#include "base/memory/scoped_ptr.h"
13#include "chrome/browser/extensions/extension_function_dispatcher.h"
[email protected]f1c102b2013-02-15 07:44:1214#include "content/public/browser/notification_observer.h"
15#include "content/public/browser/web_contents_observer.h"
16
17class GURL;
18
19namespace content {
20class RenderViewHost;
21}
22
23namespace extensions {
24struct DraggableRegion;
25}
26
[email protected]8a7ffed92013-07-17 06:21:1927namespace apps {
28
29// ShellWindowContents class specific to app windows. It maintains a
[email protected]f1c102b2013-02-15 07:44:1230// WebContents instance and observes it for the purpose of passing
31// messages to the extensions system.
[email protected]8a7ffed92013-07-17 06:21:1932class AppWindowContents : public ShellWindowContents,
[email protected]f1c102b2013-02-15 07:44:1233 public content::NotificationObserver,
34 public content::WebContentsObserver,
35 public ExtensionFunctionDispatcher::Delegate {
36 public:
[email protected]8a7ffed92013-07-17 06:21:1937 explicit AppWindowContents(ShellWindow* host);
[email protected]f1c102b2013-02-15 07:44:1238 virtual ~AppWindowContents();
39
[email protected]8a7ffed92013-07-17 06:21:1940 // ShellWindowContents
[email protected]f1c102b2013-02-15 07:44:1241 virtual void Initialize(Profile* profile, const GURL& url) OVERRIDE;
42 virtual void LoadContents(int32 creator_process_id) OVERRIDE;
43 virtual void NativeWindowChanged(NativeAppWindow* native_app_window) OVERRIDE;
44 virtual void NativeWindowClosed() OVERRIDE;
45 virtual content::WebContents* GetWebContents() const OVERRIDE;
46
47 private:
48 // content::NotificationObserver
49 virtual void Observe(int type,
50 const content::NotificationSource& source,
51 const content::NotificationDetails& details) OVERRIDE;
52
53 // content::WebContentsObserver
54 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
55
56 // ExtensionFunctionDispatcher::Delegate
57 virtual extensions::WindowController* GetExtensionWindowController() const
58 OVERRIDE;
59 virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE;
60
61 void OnRequest(const ExtensionHostMsg_Request_Params& params);
62 void UpdateDraggableRegions(
63 const std::vector<extensions::DraggableRegion>& regions);
64 void SuspendRenderViewHost(content::RenderViewHost* rvh);
65
[email protected]8a7ffed92013-07-17 06:21:1966 ShellWindow* host_; // This class is owned by |host_|
[email protected]f1c102b2013-02-15 07:44:1267 GURL url_;
68 content::NotificationRegistrar registrar_;
69 scoped_ptr<content::WebContents> web_contents_;
70 scoped_ptr<ExtensionFunctionDispatcher> extension_function_dispatcher_;
71
72 DISALLOW_COPY_AND_ASSIGN(AppWindowContents);
73};
74
[email protected]8a7ffed92013-07-17 06:21:1975} // namespace apps
76
[email protected]f1c102b2013-02-15 07:44:1277#endif // CHROME_BROWSER_EXTENSIONS_APP_WINDOW_CONTENTS_H_