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

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

Issue 10532005: Initial check-in of gesture config WebUI. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Addressed all outstanding review comments. Created 8 years, 6 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) 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 // Contains constants for known URLs and portions thereof. 5 // Contains constants for known URLs and portions thereof.
6 6
7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_
8 #define CHROME_COMMON_URL_CONSTANTS_H_ 8 #define CHROME_COMMON_URL_CONSTANTS_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 #endif 93 #endif
94 94
95 #if defined(USE_ASH) 95 #if defined(USE_ASH)
96 extern const char kChromeUITransparencyURL[]; 96 extern const char kChromeUITransparencyURL[];
97 #endif 97 #endif
98 98
99 #if defined(FILE_MANAGER_EXTENSION) 99 #if defined(FILE_MANAGER_EXTENSION)
100 extern const char kChromeUIFileManagerURL[]; 100 extern const char kChromeUIFileManagerURL[];
101 #endif 101 #endif
102 102
103 #if defined(USE_AURA)
104 extern const char kChromeUIGestureConfigURL[];
105 extern const char kChromeUIGestureConfigHost[];
106 #endif
107
103 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) 108 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA)
104 extern const char kChromeUICollectedCookiesURL[]; 109 extern const char kChromeUICollectedCookiesURL[];
105 extern const char kChromeUIHttpAuthURL[]; 110 extern const char kChromeUIHttpAuthURL[];
106 extern const char kChromeUITabModalConfirmDialogURL[]; 111 extern const char kChromeUITabModalConfirmDialogURL[];
107 #endif 112 #endif
108 113
109 // chrome components of URLs. Should be kept in sync with the full URLs above. 114 // chrome components of URLs. Should be kept in sync with the full URLs above.
110 extern const char kChromeUIAboutHost[]; 115 extern const char kChromeUIAboutHost[];
111 extern const char kChromeUIAboutPageFrameHost[]; 116 extern const char kChromeUIAboutPageFrameHost[];
112 extern const char kChromeUIBlankHost[]; 117 extern const char kChromeUIBlankHost[];
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 #endif 374 #endif
370 375
371 #if defined(OS_CHROMEOS) 376 #if defined(OS_CHROMEOS)
372 // "Learn more" URL for the Cloud Print section under Options. 377 // "Learn more" URL for the Cloud Print section under Options.
373 extern const char kCloudPrintLearnMoreURL[]; 378 extern const char kCloudPrintLearnMoreURL[];
374 #endif 379 #endif
375 380
376 } // namespace chrome 381 } // namespace chrome
377 382
378 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 383 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698