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

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

Issue 6749021: Added new fileBrowserPrivate and fileHandler extension APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // Defines all the command-line switches used by Chrome. 5 // Defines all the command-line switches used by Chrome.
6 6
7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_
8 #define CHROME_COMMON_CHROME_SWITCHES_H_ 8 #define CHROME_COMMON_CHROME_SWITCHES_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 #endif 350 #endif
351 351
352 #if defined(TOUCH_UI) 352 #if defined(TOUCH_UI)
353 extern const char kKeepMouseCursor[]; 353 extern const char kKeepMouseCursor[];
354 #endif 354 #endif
355 355
356 #ifndef NDEBUG 356 #ifndef NDEBUG
357 extern const char kClearTokenService[]; 357 extern const char kClearTokenService[];
358 extern const char kSetToken[]; 358 extern const char kSetToken[];
359 extern const char kWebSocketLiveExperimentHost[]; 359 extern const char kWebSocketLiveExperimentHost[];
360 extern const char kExposePrivateExtensionApi[];
360 #endif 361 #endif
361 362
362 #if !defined(OFFICIAL_BUILD) 363 #if !defined(OFFICIAL_BUILD)
363 extern const char kRendererCheckFalseTest[]; 364 extern const char kRendererCheckFalseTest[];
364 #endif 365 #endif
365 366
366 #if defined(HAVE_XINPUT2) 367 #if defined(HAVE_XINPUT2)
367 extern const char kTouchDevices[]; 368 extern const char kTouchDevices[];
368 #endif 369 #endif
369 370
370 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 371 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
371 // alphabetical order, or in one of the ifdefs (also in order in each section). 372 // alphabetical order, or in one of the ifdefs (also in order in each section).
372 373
373 } // namespace switches 374 } // namespace switches
374 375
375 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 376 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698