Unregister from GCM when the only GCM app is removed
[chromium-blink-merge.git] / extensions / browser / guest_view / extension_view / extension_view_guest.h
blob350c20c95c0401be2cac52d0318f4f1629667ee3
1 // Copyright 2015 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.
5 #ifndef EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSION_VIEW_EXTENSION_VIEW_GUEST_H_
6 #define EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSION_VIEW_EXTENSION_VIEW_GUEST_H_
8 #include "base/macros.h"
9 #include "extensions/browser/extension_function_dispatcher.h"
10 #include "extensions/browser/guest_view/extension_view/extension_view_guest_delegate.h"
11 #include "extensions/browser/guest_view/guest_view.h"
12 #include "url/gurl.h"
14 namespace content {
15 class BrowserContext;
18 namespace extensions {
20 class ExtensionViewGuest
21 : public extensions::GuestView<ExtensionViewGuest>,
22 public extensions::ExtensionFunctionDispatcher::Delegate {
23 public:
24 static const char Type[];
25 static extensions::GuestViewBase* Create(
26 content::WebContents* owner_web_contents);
28 // Request navigating the guest to the provided |src| URL.
29 void NavigateGuest(const std::string& src, bool force_navigation);
31 // GuestViewBase implementation.
32 bool CanRunInDetachedState() const override;
33 void CreateWebContents(const base::DictionaryValue& create_params,
34 const WebContentsCreatedCallback& callback) override;
35 void DidInitialize(const base::DictionaryValue& create_params) override;
36 void DidAttachToEmbedder() override;
37 const char* GetAPINamespace() const override;
38 int GetTaskPrefix() const override;
40 // content::WebContentsObserver implementation.
41 bool OnMessageReceived(const IPC::Message& message) override;
43 private:
44 ExtensionViewGuest(content::WebContents* owner_web_contents);
45 ~ExtensionViewGuest() override;
46 void OnRequest(const ExtensionHostMsg_Request_Params& params);
48 // Applies attributes to the extensionview.
49 void ApplyAttributes(const base::DictionaryValue& params);
51 scoped_ptr<extensions::ExtensionFunctionDispatcher>
52 extension_function_dispatcher_;
53 scoped_ptr<extensions::ExtensionViewGuestDelegate>
54 extension_view_guest_delegate_;
55 GURL view_page_;
57 DISALLOW_COPY_AND_ASSIGN(ExtensionViewGuest);
60 } // namespace extensions
62 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSION_VIEW_EXTENSION_VIEW_GUEST_H_