OLD | NEW |
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 // 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 // The URL for the "Learn more" page for the usage/crash reporting option in the | 235 // The URL for the "Learn more" page for the usage/crash reporting option in the |
236 // first run dialog. | 236 // first run dialog. |
237 extern const char kLearnMoreReportingURL[]; | 237 extern const char kLearnMoreReportingURL[]; |
238 | 238 |
239 // The URL for the "Learn more" page for the outdated plugin infobar. | 239 // The URL for the "Learn more" page for the outdated plugin infobar. |
240 extern const char kOutdatedPluginLearnMoreURL[]; | 240 extern const char kOutdatedPluginLearnMoreURL[]; |
241 | 241 |
242 // The URL for the "Learn more" page for the blocked plugin infobar. | 242 // The URL for the "Learn more" page for the blocked plugin infobar. |
243 extern const char kBlockedPluginLearnMoreURL[]; | 243 extern const char kBlockedPluginLearnMoreURL[]; |
244 | 244 |
| 245 // The URL for the "About Voice Recognition" menu item. |
| 246 extern const char kSpeechInputAboutURL[]; |
| 247 |
245 // Call near the beginning of startup to register Chrome's internal URLs that | 248 // Call near the beginning of startup to register Chrome's internal URLs that |
246 // should be parsed as "standard" with the googleurl library. | 249 // should be parsed as "standard" with the googleurl library. |
247 void RegisterChromeSchemes(); | 250 void RegisterChromeSchemes(); |
248 | 251 |
249 } // namespace chrome | 252 } // namespace chrome |
250 | 253 |
251 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 254 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
OLD | NEW |