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

Side by Side Diff: chrome/browser/chrome_content_browser_client.cc

Issue 2159283003: [WIP][DO NOT LAND] Componentize spellcheck Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
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 #include "chrome/browser/chrome_content_browser_client.h" 5 #include "chrome/browser/chrome_content_browser_client.h"
6 6
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 291
292 #if defined(ENABLE_PLUGINS) 292 #if defined(ENABLE_PLUGINS)
293 #include "chrome/browser/plugins/chrome_content_browser_client_plugins_part.h" 293 #include "chrome/browser/plugins/chrome_content_browser_client_plugins_part.h"
294 #endif 294 #endif
295 295
296 #if defined(ENABLE_SPELLCHECK) 296 #if defined(ENABLE_SPELLCHECK)
297 #include "chrome/browser/spellchecker/spellcheck_message_filter.h" 297 #include "chrome/browser/spellchecker/spellcheck_message_filter.h"
298 #endif 298 #endif
299 299
300 #if defined(USE_BROWSER_SPELLCHECKER) 300 #if defined(USE_BROWSER_SPELLCHECKER)
301 #include "chrome/browser/spellchecker/spellcheck_message_filter_platform.h" 301 #include "components/spellcheck/browser/spellcheck_message_filter_platform.h"
302 #endif 302 #endif
303 303
304 #if defined(ENABLE_WEBRTC) 304 #if defined(ENABLE_WEBRTC)
305 #include "chrome/browser/media/audio_debug_recordings_handler.h" 305 #include "chrome/browser/media/audio_debug_recordings_handler.h"
306 #include "chrome/browser/media/webrtc_event_log_handler.h" 306 #include "chrome/browser/media/webrtc_event_log_handler.h"
307 #include "chrome/browser/media/webrtc_logging_handler_host.h" 307 #include "chrome/browser/media/webrtc_logging_handler_host.h"
308 #endif 308 #endif
309 309
310 #if defined(ENABLE_MEDIA_ROUTER) 310 #if defined(ENABLE_MEDIA_ROUTER)
311 #include "chrome/browser/media/router/media_router_feature.h" 311 #include "chrome/browser/media/router/media_router_feature.h"
(...skipping 2734 matching lines...) Expand 10 before | Expand all | Expand 10 after
3046 if (channel <= kMaxDisableEncryptionChannel) { 3046 if (channel <= kMaxDisableEncryptionChannel) {
3047 static const char* const kWebRtcDevSwitchNames[] = { 3047 static const char* const kWebRtcDevSwitchNames[] = {
3048 switches::kDisableWebRtcEncryption, 3048 switches::kDisableWebRtcEncryption,
3049 }; 3049 };
3050 to_command_line->CopySwitchesFrom(from_command_line, 3050 to_command_line->CopySwitchesFrom(from_command_line,
3051 kWebRtcDevSwitchNames, 3051 kWebRtcDevSwitchNames,
3052 arraysize(kWebRtcDevSwitchNames)); 3052 arraysize(kWebRtcDevSwitchNames));
3053 } 3053 }
3054 } 3054 }
3055 #endif // defined(ENABLE_WEBRTC) 3055 #endif // defined(ENABLE_WEBRTC)
OLDNEW
« no previous file with comments | « chrome/browser/android/chrome_jni_registrar.cc ('k') | chrome/browser/policy/configuration_policy_handler_list_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698