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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 18604: Fix a timing issue that caused gears to fail to load sometimes.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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 | « chrome/common/chrome_switches.h ('k') | chrome/common/plugin_messages_internal.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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 // This is a comma-separated list of plugin library names and activex clsid. 105 // This is a comma-separated list of plugin library names and activex clsid.
106 const wchar_t kTrustedPlugins[] = L"trusted-plugins"; 106 const wchar_t kTrustedPlugins[] = L"trusted-plugins";
107 107
108 // Runs the security test for the sandbox. 108 // Runs the security test for the sandbox.
109 const wchar_t kTestSandbox[] = L"test-sandbox"; 109 const wchar_t kTestSandbox[] = L"test-sandbox";
110 110
111 // Specifies the user data directory, which is where the browser will look 111 // Specifies the user data directory, which is where the browser will look
112 // for all of its state. 112 // for all of its state.
113 const wchar_t kUserDataDir[] = L"user-data-dir"; 113 const wchar_t kUserDataDir[] = L"user-data-dir";
114 114
115 // Specifies the plugin data directory, which is where plugins (Gears
116 // specifically) will store its state.
117 const wchar_t kPluginDataDir[] = L"plugin-data-dir";
118
115 // Specifies the path to the user data folder for the parent profile. 119 // Specifies the path to the user data folder for the parent profile.
116 const wchar_t kParentProfile[] = L"parent-profile"; 120 const wchar_t kParentProfile[] = L"parent-profile";
117 121
118 // Specifies that the associated value should be launched in "application" mode. 122 // Specifies that the associated value should be launched in "application" mode.
119 const wchar_t kApp[] = L"app"; 123 const wchar_t kApp[] = L"app";
120 124
121 // Specifies the file that should be uploaded to the provided application. This 125 // Specifies the file that should be uploaded to the provided application. This
122 // switch is expected to be used with --app option. 126 // switch is expected to be used with --app option.
123 const wchar_t kAppUploadFile[] = L"upload-file"; 127 const wchar_t kAppUploadFile[] = L"upload-file";
124 128
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 // http://b/issue?id=1432077 is fixed. 351 // http://b/issue?id=1432077 is fixed.
348 const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility"; 352 const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility";
349 353
350 // Enable HTML5 Video/Audio tag support 354 // Enable HTML5 Video/Audio tag support
351 const wchar_t kEnableVideo[] = L"enable-video"; 355 const wchar_t kEnableVideo[] = L"enable-video";
352 356
353 // Pass the name of the current running automated test to Chrome. 357 // Pass the name of the current running automated test to Chrome.
354 const wchar_t kTestName[] = L"test-name"; 358 const wchar_t kTestName[] = L"test-name";
355 359
356 } // namespace switches 360 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/plugin_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698