Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(322)

Side by Side Diff: chrome/browser/guest_view/extension_options/extension_options_guest.h

Issue 378783002: Initial implementation of the <extensionoptions> GuestView tag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Handle changing attribute values, prevent cross-extension options embedding Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_H_
6 #define CHROME_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_H_
7
8 #include "chrome/browser/guest_view/guest_view.h"
9 #include "extensions/browser/extension_function_dispatcher.h"
10
11 class ExtensionOptionsGuest :
12 public GuestView<ExtensionOptionsGuest>,
13 public extensions::ExtensionFunctionDispatcher::Delegate {
14
15 public:
16 static const char Type[];
17
18 ExtensionOptionsGuest(content::BrowserContext* browser_context,
19 int guest_instance_id);
20
21 // GuestViewBase implementation
22 virtual bool CanEmbedderUseGuestView(
23 const std::string& embedder_extension_id) OVERRIDE;
24 virtual void CreateWebContents(
25 const std::string& embedder_extension_id,
26 int embedder_render_process_id,
27 const base::DictionaryValue& create_params,
28 const WebContentsCreatedCallback& callback) OVERRIDE;
29 virtual void DidAttachToEmbedder() OVERRIDE;
30 virtual void DidInitialize() OVERRIDE;
31
32 // ExtensionFunctionDispatcher::Delegate implementation
33 virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE;
34
35 // content::WebContentsObserver implementation.
36 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
37
38 private:
39 virtual ~ExtensionOptionsGuest();
40 void OnRequest(const ExtensionHostMsg_Request_Params& params);
41
42 scoped_ptr<extensions::ExtensionFunctionDispatcher>
43 extension_function_dispatcher_;
44 GURL options_page_;
45 };
46
47 #endif // CHROME_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698