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

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

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 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
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 <stddef.h> 8 #include <stddef.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 19 matching lines...) Expand all
30 #include "chrome/renderer/leak_detector/leak_detector_remote_client.h" 30 #include "chrome/renderer/leak_detector/leak_detector_remote_client.h"
31 #endif 31 #endif
32 32
33 class ChromeRenderThreadObserver; 33 class ChromeRenderThreadObserver;
34 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) 34 #if BUILDFLAG(ENABLE_PRINT_PREVIEW)
35 class ChromePDFPrintClient; 35 class ChromePDFPrintClient;
36 #endif 36 #endif
37 class PrescientNetworkingDispatcher; 37 class PrescientNetworkingDispatcher;
38 #if BUILDFLAG(ENABLE_SPELLCHECK) 38 #if BUILDFLAG(ENABLE_SPELLCHECK)
39 class SpellCheck; 39 class SpellCheck;
40 class SpellCheckProvider;
41 #endif 40 #endif
42 41
43 struct ChromeViewHostMsg_GetPluginInfo_Output; 42 struct ChromeViewHostMsg_GetPluginInfo_Output;
44 43
45 namespace content { 44 namespace content {
46 class BrowserPluginDelegate; 45 class BrowserPluginDelegate;
47 struct WebPluginInfo; 46 struct WebPluginInfo;
48 } 47 }
49 48
50 namespace network_hints { 49 namespace network_hints {
51 class PrescientNetworkingDispatcher; 50 class PrescientNetworkingDispatcher;
52 } 51 }
53 52
54 namespace extensions { 53 namespace extensions {
55 class Dispatcher;
56 class Extension; 54 class Extension;
57 } 55 }
58 56
59 namespace prerender { 57 namespace prerender {
60 class PrerenderDispatcher; 58 class PrerenderDispatcher;
61 } 59 }
62 60
63 namespace safe_browsing { 61 namespace safe_browsing {
64 class PhishingClassifierFilter; 62 class PhishingClassifierFilter;
65 } 63 }
66 64
67 namespace subresource_filter { 65 namespace subresource_filter {
68 class RulesetDealer; 66 class RulesetDealer;
69 } 67 }
70 68
71 namespace web_cache { 69 namespace web_cache {
72 class WebCacheImpl; 70 class WebCacheImpl;
73 } 71 }
74 72
75 namespace blink {
76 class WebSecurityOrigin;
77 }
78
79 #if BUILDFLAG(ENABLE_WEBRTC) 73 #if BUILDFLAG(ENABLE_WEBRTC)
80 class WebRtcLoggingMessageFilter; 74 class WebRtcLoggingMessageFilter;
81 #endif 75 #endif
82 76
83 namespace internal { 77 namespace internal {
84 78
85 extern const char kFlashYouTubeRewriteUMA[]; 79 extern const char kFlashYouTubeRewriteUMA[];
86 80
87 // Used for UMA. Values should not be reorderer or reused. 81 // Used for UMA. Values should not be reorderer or reused.
88 // SUCCESS refers to an embed properly rewritten. SUCCESS_PARAMS_REWRITE refers 82 // SUCCESS refers to an embed properly rewritten. SUCCESS_PARAMS_REWRITE refers
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 #endif 251 #endif
258 252
259 #if defined(OS_CHROMEOS) 253 #if defined(OS_CHROMEOS)
260 std::unique_ptr<LeakDetectorRemoteClient> leak_detector_remote_client_; 254 std::unique_ptr<LeakDetectorRemoteClient> leak_detector_remote_client_;
261 #endif 255 #endif
262 256
263 DISALLOW_COPY_AND_ASSIGN(ChromeContentRendererClient); 257 DISALLOW_COPY_AND_ASSIGN(ChromeContentRendererClient);
264 }; 258 };
265 259
266 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 260 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/installer/util/google_update_settings.h ('k') | chrome/renderer/chrome_render_frame_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698