OLD | NEW |
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 #include "chrome/common/url_constants.h" | 5 #include "chrome/common/url_constants.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "content/public/common/url_constants.h" | 10 #include "content/public/common/url_constants.h" |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 const char kChromeUIWrenchMenu[] = "wrench-menu"; | 304 const char kChromeUIWrenchMenu[] = "wrench-menu"; |
305 | 305 |
306 const char kEULAPathFormat[] = "/usr/share/chromeos-assets/eula/%s/eula.html"; | 306 const char kEULAPathFormat[] = "/usr/share/chromeos-assets/eula/%s/eula.html"; |
307 const char kOemEulaURLPath[] = "oem"; | 307 const char kOemEulaURLPath[] = "oem"; |
308 const char kOnlineEulaURLPath[] = | 308 const char kOnlineEulaURLPath[] = |
309 "https://www.google.com/intl/%s/chrome/eula_text.html"; | 309 "https://www.google.com/intl/%s/chrome/eula_text.html"; |
310 | 310 |
311 const char kChromeOSCreditsPath[] = | 311 const char kChromeOSCreditsPath[] = |
312 "/opt/google/chrome/resources/about_os_credits.html"; | 312 "/opt/google/chrome/resources/about_os_credits.html"; |
313 | 313 |
314 const char kChromeUILocalImageHost[] = "local-image"; | 314 const char kChromeOSAssetHost[] = "chromeos-asset"; |
315 const char kChromeUILocalImagePath[] = "/usr/share/chromeos-assets/images/"; | 315 const char kChromeOSAssetPath[] = "/usr/share/chromeos-assets/"; |
316 #endif | 316 #endif |
317 | 317 |
318 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) | 318 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) |
319 const char kChromeUITabModalConfirmDialogHost[] = "tab-modal-confirm-dialog"; | 319 const char kChromeUITabModalConfirmDialogHost[] = "tab-modal-confirm-dialog"; |
320 #endif | 320 #endif |
321 | 321 |
322 #if defined(ENABLE_WEBRTC) | 322 #if defined(ENABLE_WEBRTC) |
323 const char kChromeUIWebRtcLogsHost[] = "webrtc-logs"; | 323 const char kChromeUIWebRtcLogsHost[] = "webrtc-logs"; |
324 #endif | 324 #endif |
325 | 325 |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
717 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 717 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
718 #else | 718 #else |
719 ""; | 719 ""; |
720 #endif | 720 #endif |
721 #endif | 721 #endif |
722 | 722 |
723 const char kEasyUnlockLearnMoreUrl[] = | 723 const char kEasyUnlockLearnMoreUrl[] = |
724 "https://support.google.com/chromebook/answer/6070209"; | 724 "https://support.google.com/chromebook/answer/6070209"; |
725 | 725 |
726 } // namespace chrome | 726 } // namespace chrome |
OLD | NEW |