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

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

Issue 10689012: Add ability to load pnacl resources from DIR_PNACL_COMPONENT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: lint Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/renderer/pepper/ppb_nacl_private_impl.cc » ('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 803 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 switches::kDumpHistogramsOnExit, 814 switches::kDumpHistogramsOnExit,
815 switches::kEnableBenchmarking, 815 switches::kEnableBenchmarking,
816 switches::kEnableBundledPpapiFlash, 816 switches::kEnableBundledPpapiFlash,
817 switches::kEnableCrxlessWebApps, 817 switches::kEnableCrxlessWebApps,
818 switches::kEnableExperimentalExtensionApis, 818 switches::kEnableExperimentalExtensionApis,
819 switches::kEnableHighDPIPDFPlugin, 819 switches::kEnableHighDPIPDFPlugin,
820 switches::kEnableIPCFuzzing, 820 switches::kEnableIPCFuzzing,
821 switches::kEnableNaCl, 821 switches::kEnableNaCl,
822 switches::kEnableNaClIPCProxy, 822 switches::kEnableNaClIPCProxy,
823 switches::kEnablePasswordGeneration, 823 switches::kEnablePasswordGeneration,
824 switches::kEnablePnacl,
824 switches::kEnableWatchdog, 825 switches::kEnableWatchdog,
825 switches::kExperimentalSpellcheckerFeatures, 826 switches::kExperimentalSpellcheckerFeatures,
826 switches::kMemoryProfiling, 827 switches::kMemoryProfiling,
827 switches::kMessageLoopHistogrammer, 828 switches::kMessageLoopHistogrammer,
828 switches::kNoJsRandomness, 829 switches::kNoJsRandomness,
829 switches::kPlaybackMode, 830 switches::kPlaybackMode,
830 switches::kPpapiFlashArgs, 831 switches::kPpapiFlashArgs,
831 switches::kPpapiFlashInProcess, 832 switches::kPpapiFlashInProcess,
832 switches::kPpapiFlashPath, 833 switches::kPpapiFlashPath,
833 switches::kPpapiFlashVersion, 834 switches::kPpapiFlashVersion,
(...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after
1681 io_thread_application_locale_ = locale; 1682 io_thread_application_locale_ = locale;
1682 } 1683 }
1683 1684
1684 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread( 1685 void ChromeContentBrowserClient::SetApplicationLocaleOnIOThread(
1685 const std::string& locale) { 1686 const std::string& locale) {
1686 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); 1687 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
1687 io_thread_application_locale_ = locale; 1688 io_thread_application_locale_ = locale;
1688 } 1689 }
1689 1690
1690 } // namespace chrome 1691 } // namespace chrome
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/pepper/ppb_nacl_private_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698