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

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

Issue 780203002: Fix threading bugs in product label UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix ImageSource Created 6 years 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 #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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 302
303 const char kEULAPathFormat[] = "/usr/share/chromeos-assets/eula/%s/eula.html"; 303 const char kEULAPathFormat[] = "/usr/share/chromeos-assets/eula/%s/eula.html";
304 const char kOemEulaURLPath[] = "oem"; 304 const char kOemEulaURLPath[] = "oem";
305 const char kOnlineEulaURLPath[] = 305 const char kOnlineEulaURLPath[] =
306 "https://www.google.com/intl/%s/chrome/eula_text.html"; 306 "https://www.google.com/intl/%s/chrome/eula_text.html";
307 307
308 const char kChromeOSCreditsPath[] = 308 const char kChromeOSCreditsPath[] =
309 "/opt/google/chrome/resources/about_os_credits.html"; 309 "/opt/google/chrome/resources/about_os_credits.html";
310 310
311 const char kChromeOSAssetHost[] = "chromeos-asset"; 311 const char kChromeOSAssetHost[] = "chromeos-asset";
312 const char kChromeOSAssetPath[] = "/usr/share/chromeos-assets/";
313 #endif 312 #endif
314 313
315 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) 314 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA)
316 const char kChromeUITabModalConfirmDialogHost[] = "tab-modal-confirm-dialog"; 315 const char kChromeUITabModalConfirmDialogHost[] = "tab-modal-confirm-dialog";
317 #endif 316 #endif
318 317
319 #if defined(ENABLE_WEBRTC) 318 #if defined(ENABLE_WEBRTC)
320 const char kChromeUIWebRtcLogsHost[] = "webrtc-logs"; 319 const char kChromeUIWebRtcLogsHost[] = "webrtc-logs";
321 #endif 320 #endif
322 321
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; 715 "https://support.google.com/chrome/?p=ui_mac_32bit_support";
717 #else 716 #else
718 ""; 717 "";
719 #endif 718 #endif
720 #endif 719 #endif
721 720
722 const char kEasyUnlockLearnMoreUrl[] = 721 const char kEasyUnlockLearnMoreUrl[] =
723 "https://support.google.com/chromebook/?p=easy_unlock"; 722 "https://support.google.com/chromebook/?p=easy_unlock";
724 723
725 } // namespace chrome 724 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698