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

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

Issue 11366127: Add a runtime flag for interactive autocomplete (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: isherman@ review Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/common/chrome_switches.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 #include "chrome/browser/chrome_content_browser_client.h" 5 #include "chrome/browser/chrome_content_browser_client.h"
6 6
7 #include <set> 7 #include <set>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after
938 switches::kDisableBundledPpapiFlash, 938 switches::kDisableBundledPpapiFlash,
939 switches::kDisableExtensionsResourceWhitelist, 939 switches::kDisableExtensionsResourceWhitelist,
940 switches::kDisableScriptedPrintThrottling, 940 switches::kDisableScriptedPrintThrottling,
941 switches::kDumpHistogramsOnExit, 941 switches::kDumpHistogramsOnExit,
942 switches::kEnableBenchmarking, 942 switches::kEnableBenchmarking,
943 switches::kEnableBundledPpapiFlash, 943 switches::kEnableBundledPpapiFlash,
944 switches::kEnableChromeStyleDialogs, 944 switches::kEnableChromeStyleDialogs,
945 switches::kEnableCrxlessWebApps, 945 switches::kEnableCrxlessWebApps,
946 switches::kEnableExperimentalExtensionApis, 946 switches::kEnableExperimentalExtensionApis,
947 switches::kEnableIPCFuzzing, 947 switches::kEnableIPCFuzzing,
948 switches::kEnableInteractiveAutocomplete,
948 switches::kEnableNaCl, 949 switches::kEnableNaCl,
949 switches::kEnableNaClIPCProxy, 950 switches::kEnableNaClIPCProxy,
950 switches::kEnablePasswordGeneration, 951 switches::kEnablePasswordGeneration,
951 switches::kEnablePnacl, 952 switches::kEnablePnacl,
952 switches::kEnableWatchdog, 953 switches::kEnableWatchdog,
953 switches::kMemoryProfiling, 954 switches::kMemoryProfiling,
954 switches::kMessageLoopHistogrammer, 955 switches::kMessageLoopHistogrammer,
955 switches::kNoJsRandomness, 956 switches::kNoJsRandomness,
956 switches::kPerformCrashAnalysis, 957 switches::kPerformCrashAnalysis,
957 switches::kPlaybackMode, 958 switches::kPlaybackMode,
(...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after
1911 io_thread_application_locale_ = locale; 1912 io_thread_application_locale_ = locale;
1912 } 1913 }
1913 1914
1914 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( 1915 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread(
1915 const std::string& locale) { 1916 const std::string& locale) {
1916 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); 1917 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
1917 io_thread_application_locale_ = locale; 1918 io_thread_application_locale_ = locale;
1918 } 1919 }
1919 1920
1920 } // namespace chrome 1921 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698