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

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

Issue 2244083002: Componentize spellcheck [4]: spellcheck/browser and android java-side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 297
298 #if defined(ENABLE_PLUGINS) 298 #if defined(ENABLE_PLUGINS)
299 #include "chrome/browser/plugins/chrome_content_browser_client_plugins_part.h" 299 #include "chrome/browser/plugins/chrome_content_browser_client_plugins_part.h"
300 #endif 300 #endif
301 301
302 #if defined(ENABLE_SPELLCHECK) 302 #if defined(ENABLE_SPELLCHECK)
303 #include "chrome/browser/spellchecker/spellcheck_message_filter.h" 303 #include "chrome/browser/spellchecker/spellcheck_message_filter.h"
304 #endif 304 #endif
305 305
306 #if defined(USE_BROWSER_SPELLCHECKER) 306 #if defined(USE_BROWSER_SPELLCHECKER)
307 #include "chrome/browser/spellchecker/spellcheck_message_filter_platform.h" 307 #include "components/spellcheck/browser/spellcheck_message_filter_platform.h"
308 #endif 308 #endif
309 309
310 #if defined(ENABLE_WEBRTC) 310 #if defined(ENABLE_WEBRTC)
311 #include "chrome/browser/media/audio_debug_recordings_handler.h" 311 #include "chrome/browser/media/audio_debug_recordings_handler.h"
312 #include "chrome/browser/media/webrtc_event_log_handler.h" 312 #include "chrome/browser/media/webrtc_event_log_handler.h"
313 #include "chrome/browser/media/webrtc_logging_handler_host.h" 313 #include "chrome/browser/media/webrtc_logging_handler_host.h"
314 #endif 314 #endif
315 315
316 #if defined(ENABLE_MEDIA_ROUTER) 316 #if defined(ENABLE_MEDIA_ROUTER)
317 #include "chrome/browser/media/router/media_router_feature.h" 317 #include "chrome/browser/media/router/media_router_feature.h"
(...skipping 2739 matching lines...) Expand 10 before | Expand all | Expand 10 after
3057 if (channel <= kMaxDisableEncryptionChannel) { 3057 if (channel <= kMaxDisableEncryptionChannel) {
3058 static const char* const kWebRtcDevSwitchNames[] = { 3058 static const char* const kWebRtcDevSwitchNames[] = {
3059 switches::kDisableWebRtcEncryption, 3059 switches::kDisableWebRtcEncryption,
3060 }; 3060 };
3061 to_command_line->CopySwitchesFrom(from_command_line, 3061 to_command_line->CopySwitchesFrom(from_command_line,
3062 kWebRtcDevSwitchNames, 3062 kWebRtcDevSwitchNames,
3063 arraysize(kWebRtcDevSwitchNames)); 3063 arraysize(kWebRtcDevSwitchNames));
3064 } 3064 }
3065 } 3065 }
3066 #endif // defined(ENABLE_WEBRTC) 3066 #endif // defined(ENABLE_WEBRTC)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698