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

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

Issue 4136004: Track in which frames navigation errors occurred and don't send further navigation events for them (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/extensions
Patch Set: Created 10 years, 1 month 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 extern const char kChromeUIMediaplayerHost[]; 122 extern const char kChromeUIMediaplayerHost[];
123 extern const char kChromeUIMobileSetupHost[]; 123 extern const char kChromeUIMobileSetupHost[];
124 extern const char kChromeUIRegisterPageHost[]; 124 extern const char kChromeUIRegisterPageHost[];
125 extern const char kChromeUISlideshowHost[]; 125 extern const char kChromeUISlideshowHost[];
126 extern const char kChromeUISystemInfoHost[]; 126 extern const char kChromeUISystemInfoHost[];
127 extern const char kChromeUIMenu[]; 127 extern const char kChromeUIMenu[];
128 extern const char kChromeUIWrenchMenu[]; 128 extern const char kChromeUIWrenchMenu[];
129 extern const char kChromeUINetworkMenu[]; 129 extern const char kChromeUINetworkMenu[];
130 #endif 130 #endif
131 131
132 // Special URL used to start a navigation to an error page.
133 extern const char kChromeUnreachableWebDataURL[];
134
132 // AppCache related URL. 135 // AppCache related URL.
133 extern const char kAppCacheViewInternalsURL[]; 136 extern const char kAppCacheViewInternalsURL[];
134 137
135 // Blob related URL. 138 // Blob related URL.
136 extern const char kBlobViewInternalsURL[]; 139 extern const char kBlobViewInternalsURL[];
137 140
138 // Cloud Print dialog URL components. 141 // Cloud Print dialog URL components.
139 extern const char kCloudPrintResourcesURL[]; 142 extern const char kCloudPrintResourcesURL[];
140 extern const char kCloudPrintResourcesHost[]; 143 extern const char kCloudPrintResourcesHost[];
141 144
(...skipping 18 matching lines...) Expand all
160 extern const char kSystemOptionsSubPage[]; 163 extern const char kSystemOptionsSubPage[];
161 #endif 164 #endif
162 165
163 // Call near the beginning of startup to register Chrome's internal URLs that 166 // Call near the beginning of startup to register Chrome's internal URLs that
164 // should be parsed as "standard" with the googleurl library. 167 // should be parsed as "standard" with the googleurl library.
165 void RegisterChromeSchemes(); 168 void RegisterChromeSchemes();
166 169
167 } // namespace chrome 170 } // namespace chrome
168 171
169 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 172 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698