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

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

Issue 2936773002: Move safe_browsing.mojom into components/safe_browsing. (Closed)
Patch Set: merge Created 3 years, 6 months 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/renderer/DEPS ('k') | chrome/renderer/safe_browsing/safe_browsing_url_loader_throttle.h » ('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 <stddef.h> 8 #include <stddef.h>
9 9
10 #include <map> 10 #include <map>
11 #include <memory> 11 #include <memory>
12 #include <set> 12 #include <set>
13 #include <string> 13 #include <string>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/compiler_specific.h" 16 #include "base/compiler_specific.h"
17 #include "base/gtest_prod_util.h" 17 #include "base/gtest_prod_util.h"
18 #include "base/strings/string16.h" 18 #include "base/strings/string16.h"
19 #include "chrome/common/safe_browsing.mojom.h"
20 #include "chrome/renderer/media/chrome_key_systems_provider.h" 19 #include "chrome/renderer/media/chrome_key_systems_provider.h"
21 #include "components/rappor/public/interfaces/rappor_recorder.mojom.h" 20 #include "components/rappor/public/interfaces/rappor_recorder.mojom.h"
21 #include "components/safe_browsing/common/safe_browsing.mojom.h"
22 #include "components/spellcheck/spellcheck_build_features.h" 22 #include "components/spellcheck/spellcheck_build_features.h"
23 #include "content/public/renderer/content_renderer_client.h" 23 #include "content/public/renderer/content_renderer_client.h"
24 #include "extensions/features/features.h" 24 #include "extensions/features/features.h"
25 #include "ipc/ipc_channel_proxy.h" 25 #include "ipc/ipc_channel_proxy.h"
26 #include "media/media_features.h" 26 #include "media/media_features.h"
27 #include "ppapi/features/features.h" 27 #include "ppapi/features/features.h"
28 #include "printing/features/features.h" 28 #include "printing/features/features.h"
29 #include "v8/include/v8.h" 29 #include "v8/include/v8.h"
30 30
31 #if defined (OS_CHROMEOS) 31 #if defined (OS_CHROMEOS)
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 rappor::mojom::RapporRecorderPtr rappor_recorder_; 238 rappor::mojom::RapporRecorderPtr rappor_recorder_;
239 239
240 std::unique_ptr<ChromeRenderThreadObserver> chrome_observer_; 240 std::unique_ptr<ChromeRenderThreadObserver> chrome_observer_;
241 std::unique_ptr<web_cache::WebCacheImpl> web_cache_impl_; 241 std::unique_ptr<web_cache::WebCacheImpl> web_cache_impl_;
242 242
243 std::unique_ptr<network_hints::PrescientNetworkingDispatcher> 243 std::unique_ptr<network_hints::PrescientNetworkingDispatcher>
244 prescient_networking_dispatcher_; 244 prescient_networking_dispatcher_;
245 245
246 chrome::ChromeKeySystemsProvider key_systems_provider_; 246 chrome::ChromeKeySystemsProvider key_systems_provider_;
247 247
248 chrome::mojom::SafeBrowsingPtr safe_browsing_; 248 safe_browsing::mojom::SafeBrowsingPtr safe_browsing_;
249 249
250 #if BUILDFLAG(ENABLE_SPELLCHECK) 250 #if BUILDFLAG(ENABLE_SPELLCHECK)
251 std::unique_ptr<SpellCheck> spellcheck_; 251 std::unique_ptr<SpellCheck> spellcheck_;
252 #endif 252 #endif
253 std::unique_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; 253 std::unique_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_;
254 std::unique_ptr<subresource_filter::UnverifiedRulesetDealer> 254 std::unique_ptr<subresource_filter::UnverifiedRulesetDealer>
255 subresource_filter_ruleset_dealer_; 255 subresource_filter_ruleset_dealer_;
256 std::unique_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; 256 std::unique_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_;
257 #if BUILDFLAG(ENABLE_WEBRTC) 257 #if BUILDFLAG(ENABLE_WEBRTC)
258 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; 258 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_;
(...skipping 14 matching lines...) Expand all
273 // Observes module load and unload events and notifies the ModuleDatabase in 273 // Observes module load and unload events and notifies the ModuleDatabase in
274 // the browser process. 274 // the browser process.
275 std::unique_ptr<ModuleWatcher> module_watcher_; 275 std::unique_ptr<ModuleWatcher> module_watcher_;
276 mojom::ModuleEventSinkPtr module_event_sink_; 276 mojom::ModuleEventSinkPtr module_event_sink_;
277 #endif 277 #endif
278 278
279 DISALLOW_COPY_AND_ASSIGN(ChromeContentRendererClient); 279 DISALLOW_COPY_AND_ASSIGN(ChromeContentRendererClient);
280 }; 280 };
281 281
282 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 282 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/renderer/DEPS ('k') | chrome/renderer/safe_browsing/safe_browsing_url_loader_throttle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698