Chromium Code Reviews| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 155 void RunScriptsAtDocumentEnd(content::RenderFrame* render_frame) override; | 155 void RunScriptsAtDocumentEnd(content::RenderFrame* render_frame) override; |
| 156 void DidInitializeServiceWorkerContextOnWorkerThread( | 156 void DidInitializeServiceWorkerContextOnWorkerThread( |
| 157 v8::Local<v8::Context> context, | 157 v8::Local<v8::Context> context, |
| 158 int embedded_worker_id, | 158 int embedded_worker_id, |
| 159 const GURL& url) override; | 159 const GURL& url) override; |
| 160 void WillDestroyServiceWorkerContextOnWorkerThread( | 160 void WillDestroyServiceWorkerContextOnWorkerThread( |
| 161 v8::Local<v8::Context> context, | 161 v8::Local<v8::Context> context, |
| 162 int embedded_worker_id, | 162 int embedded_worker_id, |
| 163 const GURL& url) override; | 163 const GURL& url) override; |
| 164 bool ShouldEnforceWebRTCRoutingPreferences() override; | 164 bool ShouldEnforceWebRTCRoutingPreferences() override; |
| 165 | 165 void UpdateUMAMetrics(const int& status, const int& max); |
|
mlamouri (slow - plz ping)
2016/08/05 12:51:10
No need to add this to the header, you can scope t
kdsilva
2016/08/05 14:33:55
Done.
| |
| 166 GURL OverrideFlashEmbedWithHTML(const GURL& url) override; | 166 GURL OverrideFlashEmbedWithHTML(const GURL& url) override; |
| 167 | 167 |
| 168 #if defined(ENABLE_SPELLCHECK) | 168 #if defined(ENABLE_SPELLCHECK) |
| 169 // Sets a new |spellcheck|. Used for testing only. | 169 // Sets a new |spellcheck|. Used for testing only. |
| 170 // Takes ownership of |spellcheck|. | 170 // Takes ownership of |spellcheck|. |
| 171 void SetSpellcheck(SpellCheck* spellcheck); | 171 void SetSpellcheck(SpellCheck* spellcheck); |
| 172 #endif | 172 #endif |
| 173 | 173 |
| 174 #if defined(ENABLE_PLUGINS) | 174 #if defined(ENABLE_PLUGINS) |
| 175 static blink::WebPlugin* CreatePlugin( | 175 static blink::WebPlugin* CreatePlugin( |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 226 #if defined(ENABLE_PRINT_PREVIEW) | 226 #if defined(ENABLE_PRINT_PREVIEW) |
| 227 std::unique_ptr<ChromePDFPrintClient> pdf_print_client_; | 227 std::unique_ptr<ChromePDFPrintClient> pdf_print_client_; |
| 228 #endif | 228 #endif |
| 229 #if defined(ENABLE_PLUGINS) | 229 #if defined(ENABLE_PLUGINS) |
| 230 std::set<std::string> allowed_camera_device_origins_; | 230 std::set<std::string> allowed_camera_device_origins_; |
| 231 std::set<std::string> allowed_compositor_origins_; | 231 std::set<std::string> allowed_compositor_origins_; |
| 232 #endif | 232 #endif |
| 233 }; | 233 }; |
| 234 | 234 |
| 235 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 235 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |