| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 // The URL for the "Learn more" page for the usage/crash reporting option in the | 243 // The URL for the "Learn more" page for the usage/crash reporting option in the |
| 244 // first run dialog. | 244 // first run dialog. |
| 245 extern const char kLearnMoreReportingURL[]; | 245 extern const char kLearnMoreReportingURL[]; |
| 246 | 246 |
| 247 // The URL for the "Learn more" page for the outdated plugin infobar. | 247 // The URL for the "Learn more" page for the outdated plugin infobar. |
| 248 extern const char kOutdatedPluginLearnMoreURL[]; | 248 extern const char kOutdatedPluginLearnMoreURL[]; |
| 249 | 249 |
| 250 // The URL for the "Learn more" page for the blocked plugin infobar. | 250 // The URL for the "Learn more" page for the blocked plugin infobar. |
| 251 extern const char kBlockedPluginLearnMoreURL[]; | 251 extern const char kBlockedPluginLearnMoreURL[]; |
| 252 | 252 |
| 253 // The URL for the "About Voice Recognition" menu item. |
| 254 extern const char kSpeechInputAboutURL[]; |
| 255 |
| 253 // The URL for the "Learn more" page for register protocol handler infobars. | 256 // The URL for the "Learn more" page for register protocol handler infobars. |
| 254 extern const char kLearnMoreRegisterProtocolHandlerURL[]; | 257 extern const char kLearnMoreRegisterProtocolHandlerURL[]; |
| 255 | 258 |
| 256 // Call near the beginning of startup to register Chrome's internal URLs that | 259 // Call near the beginning of startup to register Chrome's internal URLs that |
| 257 // should be parsed as "standard" with the googleurl library. | 260 // should be parsed as "standard" with the googleurl library. |
| 258 void RegisterChromeSchemes(); | 261 void RegisterChromeSchemes(); |
| 259 | 262 |
| 260 #if defined(OS_CHROMEOS) | 263 #if defined(OS_CHROMEOS) |
| 261 // "Learn more" URL for the Cloud Print section under Options. | 264 // "Learn more" URL for the Cloud Print section under Options. |
| 262 extern const char kCloudPrintLearnMoreURL[]; | 265 extern const char kCloudPrintLearnMoreURL[]; |
| 263 #endif | 266 #endif |
| 264 | 267 |
| 265 } // namespace chrome | 268 } // namespace chrome |
| 266 | 269 |
| 267 #endif // CHROME_COMMON_URL_CONSTANTS_H_ | 270 #endif // CHROME_COMMON_URL_CONSTANTS_H_ |
| OLD | NEW |