OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 5 #ifndef CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 bool ShouldReportDetailedMessageForSource( | 140 bool ShouldReportDetailedMessageForSource( |
141 const base::string16& source) const override; | 141 const base::string16& source) const override; |
142 bool ShouldEnableSiteIsolationPolicy() const override; | 142 bool ShouldEnableSiteIsolationPolicy() const override; |
143 blink::WebWorkerPermissionClientProxy* CreateWorkerPermissionClientProxy( | 143 blink::WebWorkerPermissionClientProxy* CreateWorkerPermissionClientProxy( |
144 content::RenderFrame* render_frame, | 144 content::RenderFrame* render_frame, |
145 blink::WebFrame* frame) override; | 145 blink::WebFrame* frame) override; |
146 bool AllowPepperMediaStreamAPI(const GURL& url) override; | 146 bool AllowPepperMediaStreamAPI(const GURL& url) override; |
147 void AddKeySystems(std::vector<media::KeySystemInfo>* key_systems) override; | 147 void AddKeySystems(std::vector<media::KeySystemInfo>* key_systems) override; |
148 bool IsPluginAllowedToUseDevChannelAPIs() override; | 148 bool IsPluginAllowedToUseDevChannelAPIs() override; |
149 bool IsPluginAllowedToUseCompositorAPI(const GURL& url) override; | 149 bool IsPluginAllowedToUseCompositorAPI(const GURL& url) override; |
150 bool IsPluginAllowedToUseVideoDecodeAPI(const GURL& url) override; | |
151 content::BrowserPluginDelegate* CreateBrowserPluginDelegate( | 150 content::BrowserPluginDelegate* CreateBrowserPluginDelegate( |
152 content::RenderFrame* render_frame, | 151 content::RenderFrame* render_frame, |
153 const std::string& mime_type, | 152 const std::string& mime_type, |
154 const GURL& original_url) override; | 153 const GURL& original_url) override; |
155 | 154 |
156 #if defined(ENABLE_EXTENSIONS) | 155 #if defined(ENABLE_EXTENSIONS) |
157 // Takes ownership. | 156 // Takes ownership. |
158 void SetExtensionDispatcherForTest( | 157 void SetExtensionDispatcherForTest( |
159 extensions::Dispatcher* extension_dispatcher); | 158 extensions::Dispatcher* extension_dispatcher); |
160 extensions::Dispatcher* GetExtensionDispatcherForTest(); | 159 extensions::Dispatcher* GetExtensionDispatcherForTest(); |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 #if defined(ENABLE_PRINT_PREVIEW) | 240 #if defined(ENABLE_PRINT_PREVIEW) |
242 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; | 241 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; |
243 #endif | 242 #endif |
244 #if defined(ENABLE_PLUGINS) | 243 #if defined(ENABLE_PLUGINS) |
245 std::set<std::string> allowed_compositor_origins_; | 244 std::set<std::string> allowed_compositor_origins_; |
246 std::set<std::string> allowed_video_decode_origins_; | 245 std::set<std::string> allowed_video_decode_origins_; |
247 #endif | 246 #endif |
248 }; | 247 }; |
249 | 248 |
250 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 249 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
OLD | NEW |