| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 } | 67 } |
| 68 | 68 |
| 69 namespace blink { | 69 namespace blink { |
| 70 class WebSecurityOrigin; | 70 class WebSecurityOrigin; |
| 71 } | 71 } |
| 72 | 72 |
| 73 #if defined(ENABLE_WEBRTC) | 73 #if defined(ENABLE_WEBRTC) |
| 74 class WebRtcLoggingMessageFilter; | 74 class WebRtcLoggingMessageFilter; |
| 75 #endif | 75 #endif |
| 76 | 76 |
| 77 // Used for UMA. Values should not be reorderer or reused. |
| 78 enum YouTubeRewriteStatus { |
| 79 SUCCESS = 0, |
| 80 SUCCESS_PARAMS_REWRITE = 1, |
| 81 SUCCESS_ENABLEJSAPI = 2, |
| 82 FAILURE_ENABLEJSAPI = 3, |
| 83 NUM_PLUGIN_ERROR // should be kept last |
| 84 }; |
| 85 |
| 77 class ChromeContentRendererClient : public content::ContentRendererClient { | 86 class ChromeContentRendererClient : public content::ContentRendererClient { |
| 78 public: | 87 public: |
| 79 ChromeContentRendererClient(); | 88 ChromeContentRendererClient(); |
| 80 ~ChromeContentRendererClient() override; | 89 ~ChromeContentRendererClient() override; |
| 81 | 90 |
| 82 void RenderThreadStarted() override; | 91 void RenderThreadStarted() override; |
| 83 void RenderFrameCreated(content::RenderFrame* render_frame) override; | 92 void RenderFrameCreated(content::RenderFrame* render_frame) override; |
| 84 void RenderViewCreated(content::RenderView* render_view) override; | 93 void RenderViewCreated(content::RenderView* render_view) override; |
| 85 SkBitmap* GetSadPluginBitmap() override; | 94 SkBitmap* GetSadPluginBitmap() override; |
| 86 SkBitmap* GetSadWebViewBitmap() override; | 95 SkBitmap* GetSadWebViewBitmap() override; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 void RunScriptsAtDocumentEnd(content::RenderFrame* render_frame) override; | 164 void RunScriptsAtDocumentEnd(content::RenderFrame* render_frame) override; |
| 156 void DidInitializeServiceWorkerContextOnWorkerThread( | 165 void DidInitializeServiceWorkerContextOnWorkerThread( |
| 157 v8::Local<v8::Context> context, | 166 v8::Local<v8::Context> context, |
| 158 int embedded_worker_id, | 167 int embedded_worker_id, |
| 159 const GURL& url) override; | 168 const GURL& url) override; |
| 160 void WillDestroyServiceWorkerContextOnWorkerThread( | 169 void WillDestroyServiceWorkerContextOnWorkerThread( |
| 161 v8::Local<v8::Context> context, | 170 v8::Local<v8::Context> context, |
| 162 int embedded_worker_id, | 171 int embedded_worker_id, |
| 163 const GURL& url) override; | 172 const GURL& url) override; |
| 164 bool ShouldEnforceWebRTCRoutingPreferences() override; | 173 bool ShouldEnforceWebRTCRoutingPreferences() override; |
| 165 | |
| 166 GURL OverrideFlashEmbedWithHTML(const GURL& url) override; | 174 GURL OverrideFlashEmbedWithHTML(const GURL& url) override; |
| 167 | 175 |
| 168 #if defined(ENABLE_SPELLCHECK) | 176 #if defined(ENABLE_SPELLCHECK) |
| 169 // Sets a new |spellcheck|. Used for testing only. | 177 // Sets a new |spellcheck|. Used for testing only. |
| 170 // Takes ownership of |spellcheck|. | 178 // Takes ownership of |spellcheck|. |
| 171 void SetSpellcheck(SpellCheck* spellcheck); | 179 void SetSpellcheck(SpellCheck* spellcheck); |
| 172 #endif | 180 #endif |
| 173 | 181 |
| 174 #if defined(ENABLE_PLUGINS) | 182 #if defined(ENABLE_PLUGINS) |
| 175 static blink::WebPlugin* CreatePlugin( | 183 static blink::WebPlugin* CreatePlugin( |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 #if defined(ENABLE_PRINT_PREVIEW) | 234 #if defined(ENABLE_PRINT_PREVIEW) |
| 227 std::unique_ptr<ChromePDFPrintClient> pdf_print_client_; | 235 std::unique_ptr<ChromePDFPrintClient> pdf_print_client_; |
| 228 #endif | 236 #endif |
| 229 #if defined(ENABLE_PLUGINS) | 237 #if defined(ENABLE_PLUGINS) |
| 230 std::set<std::string> allowed_camera_device_origins_; | 238 std::set<std::string> allowed_camera_device_origins_; |
| 231 std::set<std::string> allowed_compositor_origins_; | 239 std::set<std::string> allowed_compositor_origins_; |
| 232 #endif | 240 #endif |
| 233 }; | 241 }; |
| 234 | 242 |
| 235 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 243 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |