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

Side by Side Diff: chrome/renderer/chrome_content_renderer_client.h

Issue 785693002: Adds DNS prefetch support to Chromecast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prefetch-browser
Patch Set: add blink dep to gyp/gn Created 6 years 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
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 17 matching lines...) Expand all
28 #endif 28 #endif
29 29
30 struct ChromeViewHostMsg_GetPluginInfo_Output; 30 struct ChromeViewHostMsg_GetPluginInfo_Output;
31 31
32 namespace content { 32 namespace content {
33 class BrowserPluginDelegate; 33 class BrowserPluginDelegate;
34 struct WebPluginInfo; 34 struct WebPluginInfo;
35 } 35 }
36 36
37 namespace dns_prefetch { 37 namespace dns_prefetch {
38 class RendererNetPredictor; 38 class PrescientNetworkingDispatcher;
39 } 39 }
40 40
41 namespace extensions { 41 namespace extensions {
42 class Dispatcher; 42 class Dispatcher;
43 class Extension; 43 class Extension;
44 class ExtensionSet; 44 class ExtensionSet;
45 class RendererPermissionsPolicyDelegate; 45 class RendererPermissionsPolicyDelegate;
46 } 46 }
47 47
48 namespace prerender { 48 namespace prerender {
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 214
215 // TODO(thestig): Extract into a separate file if possible. Cleanup 215 // TODO(thestig): Extract into a separate file if possible. Cleanup
216 // ENABLE_EXTENSIONS ifdefs in the .cc file as well. 216 // ENABLE_EXTENSIONS ifdefs in the .cc file as well.
217 #if defined(ENABLE_EXTENSIONS) 217 #if defined(ENABLE_EXTENSIONS)
218 scoped_ptr<ChromeExtensionsDispatcherDelegate> extension_dispatcher_delegate_; 218 scoped_ptr<ChromeExtensionsDispatcherDelegate> extension_dispatcher_delegate_;
219 scoped_ptr<extensions::Dispatcher> extension_dispatcher_; 219 scoped_ptr<extensions::Dispatcher> extension_dispatcher_;
220 scoped_ptr<extensions::RendererPermissionsPolicyDelegate> 220 scoped_ptr<extensions::RendererPermissionsPolicyDelegate>
221 permissions_policy_delegate_; 221 permissions_policy_delegate_;
222 #endif 222 #endif
223 223
224 scoped_ptr<PrescientNetworkingDispatcher> prescient_networking_dispatcher_; 224 scoped_ptr<dns_prefetch::PrescientNetworkingDispatcher>
225 scoped_ptr<dns_prefetch::RendererNetPredictor> net_predictor_; 225 prescient_networking_dispatcher_;
226 scoped_ptr<password_manager::CredentialManagerClient> 226 scoped_ptr<password_manager::CredentialManagerClient>
227 credential_manager_client_; 227 credential_manager_client_;
228 #if defined(ENABLE_SPELLCHECK) 228 #if defined(ENABLE_SPELLCHECK)
229 scoped_ptr<SpellCheck> spellcheck_; 229 scoped_ptr<SpellCheck> spellcheck_;
230 #endif 230 #endif
231 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; 231 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_;
232 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; 232 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_;
233 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; 233 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_;
234 #if defined(ENABLE_WEBRTC) 234 #if defined(ENABLE_WEBRTC)
235 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; 235 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_;
236 #endif 236 #endif
237 scoped_ptr<SearchBouncer> search_bouncer_; 237 scoped_ptr<SearchBouncer> search_bouncer_;
238 #if defined(ENABLE_PRINT_PREVIEW) 238 #if defined(ENABLE_PRINT_PREVIEW)
239 scoped_ptr<ChromePDFPrintClient> pdf_print_client_; 239 scoped_ptr<ChromePDFPrintClient> pdf_print_client_;
240 #endif 240 #endif
241 #if defined(ENABLE_PLUGINS) 241 #if defined(ENABLE_PLUGINS)
242 std::set<std::string> allowed_compositor_origins_; 242 std::set<std::string> allowed_compositor_origins_;
243 std::set<std::string> allowed_video_decode_origins_; 243 std::set<std::string> allowed_video_decode_origins_;
244 #endif 244 #endif
245 }; 245 };
246 246
247 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 247 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698