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 namespace internal { |
| 78 |
| 79 extern const char kFlashYouTubeRewriteUMA[]; |
| 80 |
| 81 // Used for UMA. Values should not be reorderer or reused. |
| 82 // SUCCESS refers to an embed properly rewritten. SUCCESS_PARAMS_REWRITE refers |
| 83 // to an embed rewritten with the params fixed. SUCCESS_ENABLEJSAPI refers to |
| 84 // a rewritten embed even though the JS API was enabled (Chrome Android only). |
| 85 // FAILURE_ENABLEJSAPI indicates the embed was not rewritten because the |
| 86 // JS API was enabled. |
| 87 enum YouTubeRewriteStatus { |
| 88 SUCCESS = 0, |
| 89 SUCCESS_PARAMS_REWRITE = 1, |
| 90 SUCCESS_ENABLEJSAPI = 2, |
| 91 FAILURE_ENABLEJSAPI = 3, |
| 92 NUM_PLUGIN_ERROR // should be kept last |
| 93 }; |
| 94 |
| 95 } // namespace internal |
| 96 |
77 class ChromeContentRendererClient : public content::ContentRendererClient { | 97 class ChromeContentRendererClient : public content::ContentRendererClient { |
78 public: | 98 public: |
79 ChromeContentRendererClient(); | 99 ChromeContentRendererClient(); |
80 ~ChromeContentRendererClient() override; | 100 ~ChromeContentRendererClient() override; |
81 | 101 |
82 void RenderThreadStarted() override; | 102 void RenderThreadStarted() override; |
83 void RenderFrameCreated(content::RenderFrame* render_frame) override; | 103 void RenderFrameCreated(content::RenderFrame* render_frame) override; |
84 void RenderViewCreated(content::RenderView* render_view) override; | 104 void RenderViewCreated(content::RenderView* render_view) override; |
85 SkBitmap* GetSadPluginBitmap() override; | 105 SkBitmap* GetSadPluginBitmap() override; |
86 SkBitmap* GetSadWebViewBitmap() override; | 106 SkBitmap* GetSadWebViewBitmap() override; |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 void RunScriptsAtDocumentEnd(content::RenderFrame* render_frame) override; | 175 void RunScriptsAtDocumentEnd(content::RenderFrame* render_frame) override; |
156 void DidInitializeServiceWorkerContextOnWorkerThread( | 176 void DidInitializeServiceWorkerContextOnWorkerThread( |
157 v8::Local<v8::Context> context, | 177 v8::Local<v8::Context> context, |
158 int embedded_worker_id, | 178 int embedded_worker_id, |
159 const GURL& url) override; | 179 const GURL& url) override; |
160 void WillDestroyServiceWorkerContextOnWorkerThread( | 180 void WillDestroyServiceWorkerContextOnWorkerThread( |
161 v8::Local<v8::Context> context, | 181 v8::Local<v8::Context> context, |
162 int embedded_worker_id, | 182 int embedded_worker_id, |
163 const GURL& url) override; | 183 const GURL& url) override; |
164 bool ShouldEnforceWebRTCRoutingPreferences() override; | 184 bool ShouldEnforceWebRTCRoutingPreferences() override; |
165 | |
166 GURL OverrideFlashEmbedWithHTML(const GURL& url) override; | 185 GURL OverrideFlashEmbedWithHTML(const GURL& url) override; |
167 | 186 |
168 #if defined(ENABLE_SPELLCHECK) | 187 #if defined(ENABLE_SPELLCHECK) |
169 // Sets a new |spellcheck|. Used for testing only. | 188 // Sets a new |spellcheck|. Used for testing only. |
170 // Takes ownership of |spellcheck|. | 189 // Takes ownership of |spellcheck|. |
171 void SetSpellcheck(SpellCheck* spellcheck); | 190 void SetSpellcheck(SpellCheck* spellcheck); |
172 #endif | 191 #endif |
173 | 192 |
174 #if defined(ENABLE_PLUGINS) | 193 #if defined(ENABLE_PLUGINS) |
175 static blink::WebPlugin* CreatePlugin( | 194 static blink::WebPlugin* CreatePlugin( |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 #if defined(ENABLE_PRINT_PREVIEW) | 245 #if defined(ENABLE_PRINT_PREVIEW) |
227 std::unique_ptr<ChromePDFPrintClient> pdf_print_client_; | 246 std::unique_ptr<ChromePDFPrintClient> pdf_print_client_; |
228 #endif | 247 #endif |
229 #if defined(ENABLE_PLUGINS) | 248 #if defined(ENABLE_PLUGINS) |
230 std::set<std::string> allowed_camera_device_origins_; | 249 std::set<std::string> allowed_camera_device_origins_; |
231 std::set<std::string> allowed_compositor_origins_; | 250 std::set<std::string> allowed_compositor_origins_; |
232 #endif | 251 #endif |
233 }; | 252 }; |
234 | 253 |
235 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 254 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
OLD | NEW |