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

Side by Side Diff: extensions/shell/renderer/shell_content_renderer_client.h

Issue 985643004: Make ContentRendererClient::DidCreateScriptContext take a WebLocalFrame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: namespace Created 5 years, 9 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef EXTENSIONS_SHELL_RENDERER_SHELL_CONTENT_RENDERER_CLIENT_H_ 5 #ifndef EXTENSIONS_SHELL_RENDERER_SHELL_CONTENT_RENDERER_CLIENT_H_
6 #define EXTENSIONS_SHELL_RENDERER_SHELL_CONTENT_RENDERER_CLIENT_H_ 6 #define EXTENSIONS_SHELL_RENDERER_SHELL_CONTENT_RENDERER_CLIENT_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 23 matching lines...) Expand all
34 blink::WebPlugin** plugin) override; 34 blink::WebPlugin** plugin) override;
35 blink::WebPlugin* CreatePluginReplacement( 35 blink::WebPlugin* CreatePluginReplacement(
36 content::RenderFrame* render_frame, 36 content::RenderFrame* render_frame,
37 const base::FilePath& plugin_path) override; 37 const base::FilePath& plugin_path) override;
38 bool ShouldForwardToGuestContainer(const IPC::Message& msg) override; 38 bool ShouldForwardToGuestContainer(const IPC::Message& msg) override;
39 bool WillSendRequest(blink::WebFrame* frame, 39 bool WillSendRequest(blink::WebFrame* frame,
40 ui::PageTransition transition_type, 40 ui::PageTransition transition_type,
41 const GURL& url, 41 const GURL& url,
42 const GURL& first_party_for_cookies, 42 const GURL& first_party_for_cookies,
43 GURL* new_url) override; 43 GURL* new_url) override;
44 void DidCreateScriptContext(blink::WebFrame* frame, 44 void DidCreateScriptContext(blink::WebLocalFrame* frame,
45 v8::Handle<v8::Context> context, 45 v8::Handle<v8::Context> context,
46 int extension_group, 46 int extension_group,
47 int world_id) override; 47 int world_id) override;
48 const void* CreatePPAPIInterface(const std::string& interface_name) override; 48 const void* CreatePPAPIInterface(const std::string& interface_name) override;
49 bool IsExternalPepperPlugin(const std::string& module_name) override; 49 bool IsExternalPepperPlugin(const std::string& module_name) override;
50 bool ShouldEnableSiteIsolationPolicy() const override; 50 bool ShouldEnableSiteIsolationPolicy() const override;
51 content::BrowserPluginDelegate* CreateBrowserPluginDelegate( 51 content::BrowserPluginDelegate* CreateBrowserPluginDelegate(
52 content::RenderFrame* render_frame, 52 content::RenderFrame* render_frame,
53 const std::string& mime_type, 53 const std::string& mime_type,
54 const GURL& original_url) override; 54 const GURL& original_url) override;
55 55
56 protected: 56 protected:
57 // app_shell embedders may need custom extensions client interfaces. 57 // app_shell embedders may need custom extensions client interfaces.
58 // This class takes ownership of the returned object. 58 // This class takes ownership of the returned object.
59 virtual ExtensionsClient* CreateExtensionsClient(); 59 virtual ExtensionsClient* CreateExtensionsClient();
60 60
61 private: 61 private:
62 scoped_ptr<ExtensionsClient> extensions_client_; 62 scoped_ptr<ExtensionsClient> extensions_client_;
63 scoped_ptr<ShellExtensionsRendererClient> extensions_renderer_client_; 63 scoped_ptr<ShellExtensionsRendererClient> extensions_renderer_client_;
64 scoped_ptr<DispatcherDelegate> extension_dispatcher_delegate_; 64 scoped_ptr<DispatcherDelegate> extension_dispatcher_delegate_;
65 scoped_ptr<Dispatcher> extension_dispatcher_; 65 scoped_ptr<Dispatcher> extension_dispatcher_;
66 66
67 DISALLOW_COPY_AND_ASSIGN(ShellContentRendererClient); 67 DISALLOW_COPY_AND_ASSIGN(ShellContentRendererClient);
68 }; 68 };
69 69
70 } // namespace extensions 70 } // namespace extensions
71 71
72 #endif // EXTENSIONS_SHELL_RENDERER_SHELL_CONTENT_RENDERER_CLIENT_H_ 72 #endif // EXTENSIONS_SHELL_RENDERER_SHELL_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « extensions/renderer/dispatcher.cc ('k') | extensions/shell/renderer/shell_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698