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

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

Issue 9909019: Add schema chrome-extension-resource:// for extension resources (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Make some test flaky for OSX Created 8 years, 7 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
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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 // The URL for the "Learn more" link for natural scrolling on ChromeOS. 345 // The URL for the "Learn more" link for natural scrolling on ChromeOS.
346 extern const char kNaturalScrollHelpURL[]; 346 extern const char kNaturalScrollHelpURL[];
347 #endif 347 #endif
348 348
349 // "Debug" pages which are dangerous and not for general consumption. 349 // "Debug" pages which are dangerous and not for general consumption.
350 extern const char* const kChromeDebugURLs[]; 350 extern const char* const kChromeDebugURLs[];
351 extern int kNumberOfChromeDebugURLs; 351 extern int kNumberOfChromeDebugURLs;
352 352
353 // Canonical schemes you can use as input to GURL.SchemeIs(). 353 // Canonical schemes you can use as input to GURL.SchemeIs().
354 extern const char kExtensionScheme[]; 354 extern const char kExtensionScheme[];
355
356 // Canonical schemes you can use as input to GURL.SchemeIs().
357 extern const char kExtensionResourceScheme[];
358
355 #if defined(OS_CHROMEOS) 359 #if defined(OS_CHROMEOS)
356 extern const char kDriveScheme[]; 360 extern const char kDriveScheme[];
357 #endif 361 #endif
358 #if defined(OS_ANDROID) 362 #if defined(OS_ANDROID)
359 extern const char kContentScheme[]; 363 extern const char kContentScheme[];
360 #endif 364 #endif
361 365
362 #if defined(OS_CHROMEOS) 366 #if defined(OS_CHROMEOS)
363 // "Learn more" URL for the Cloud Print section under Options. 367 // "Learn more" URL for the Cloud Print section under Options.
364 extern const char kCloudPrintLearnMoreURL[]; 368 extern const char kCloudPrintLearnMoreURL[];
365 #endif 369 #endif
366 370
367 } // namespace chrome 371 } // namespace chrome
368 372
369 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 373 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/extension_file_util_unittest.cc ('k') | chrome/common/url_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698