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

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

Issue 1275813002: Implemented typo recognition in Chrome for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@4_remove_mac_redundancies
Patch Set: Changed pending requests to be handled in native, other comment addressing Created 5 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 1416 matching lines...) Expand 10 before | Expand all | Expand 10 after
1427 extensions::switches::kWhitelistedExtensionID, 1427 extensions::switches::kWhitelistedExtensionID,
1428 #endif 1428 #endif
1429 switches::kAllowInsecureLocalhost, 1429 switches::kAllowInsecureLocalhost,
1430 switches::kAppsGalleryURL, 1430 switches::kAppsGalleryURL,
1431 switches::kCloudPrintURL, 1431 switches::kCloudPrintURL,
1432 switches::kCloudPrintXmppEndpoint, 1432 switches::kCloudPrintXmppEndpoint,
1433 switches::kDisableBundledPpapiFlash, 1433 switches::kDisableBundledPpapiFlash,
1434 switches::kDisableCastStreamingHWEncoding, 1434 switches::kDisableCastStreamingHWEncoding,
1435 switches::kDisableJavaScriptHarmonyShipping, 1435 switches::kDisableJavaScriptHarmonyShipping,
1436 switches::kDisableNewBookmarkApps, 1436 switches::kDisableNewBookmarkApps,
1437 #if defined(ENABLE_SPELLCHECK) && defined(OS_ANDROID)
1438 switches::kEnableAndroidSpellChecker,
1439 #endif
1437 switches::kEnableBenchmarking, 1440 switches::kEnableBenchmarking,
1438 switches::kEnableNaCl, 1441 switches::kEnableNaCl,
1439 #if !defined(DISABLE_NACL) 1442 #if !defined(DISABLE_NACL)
1440 switches::kEnableNaClDebug, 1443 switches::kEnableNaClDebug,
1441 switches::kEnableNaClNonSfiMode, 1444 switches::kEnableNaClNonSfiMode,
1442 switches::kEnablePNaClSubzero, 1445 switches::kEnablePNaClSubzero,
1443 #endif 1446 #endif
1444 switches::kEnableNetBenchmarking, 1447 switches::kEnableNetBenchmarking,
1445 switches::kEnableNewBookmarkApps, 1448 switches::kEnableNewBookmarkApps,
1446 switches::kEnablePluginPlaceholderShadowDom, 1449 switches::kEnablePluginPlaceholderShadowDom,
(...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after
2563 switches::kDisableWebRtcEncryption, 2566 switches::kDisableWebRtcEncryption,
2564 }; 2567 };
2565 to_command_line->CopySwitchesFrom(from_command_line, 2568 to_command_line->CopySwitchesFrom(from_command_line,
2566 kWebRtcDevSwitchNames, 2569 kWebRtcDevSwitchNames,
2567 arraysize(kWebRtcDevSwitchNames)); 2570 arraysize(kWebRtcDevSwitchNames));
2568 } 2571 }
2569 } 2572 }
2570 #endif // defined(ENABLE_WEBRTC) 2573 #endif // defined(ENABLE_WEBRTC)
2571 2574
2572 } // namespace chrome 2575 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698