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

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

Issue 182383008: Create chrome://serviceworker-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nits Created 6 years, 9 months 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) 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 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 kChromeUIPrintHost, 632 kChromeUIPrintHost,
633 #endif 633 #endif
634 content::kChromeUIAccessibilityHost, 634 content::kChromeUIAccessibilityHost,
635 content::kChromeUIAppCacheInternalsHost, 635 content::kChromeUIAppCacheInternalsHost,
636 content::kChromeUIBlobInternalsHost, 636 content::kChromeUIBlobInternalsHost,
637 content::kChromeUIGpuHost, 637 content::kChromeUIGpuHost,
638 content::kChromeUIHistogramHost, 638 content::kChromeUIHistogramHost,
639 content::kChromeUIIndexedDBInternalsHost, 639 content::kChromeUIIndexedDBInternalsHost,
640 content::kChromeUIMediaInternalsHost, 640 content::kChromeUIMediaInternalsHost,
641 content::kChromeUINetworkViewCacheHost, 641 content::kChromeUINetworkViewCacheHost,
642 content::kChromeUIServiceWorkerInternalsHost,
642 content::kChromeUITracingHost, 643 content::kChromeUITracingHost,
643 content::kChromeUIWebRTCInternalsHost, 644 content::kChromeUIWebRTCInternalsHost,
644 #if defined(ENABLE_WEBRTC) 645 #if defined(ENABLE_WEBRTC)
645 kChromeUIWebRtcLogsHost, 646 kChromeUIWebRtcLogsHost,
646 #endif 647 #endif
647 }; 648 };
648 const size_t kNumberOfChromeHostURLs = arraysize(kChromeHostURLs); 649 const size_t kNumberOfChromeHostURLs = arraysize(kChromeHostURLs);
649 650
650 const char* const kChromeDebugURLs[] = { 651 const char* const kChromeDebugURLs[] = {
651 content::kChromeUICrashURL, 652 content::kChromeUICrashURL,
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 #if defined(OS_MACOSX) 694 #if defined(OS_MACOSX)
694 const char kMac32BitDeprecationURL[] = 695 const char kMac32BitDeprecationURL[] =
695 #if !defined(ARCH_CPU_64_BITS) 696 #if !defined(ARCH_CPU_64_BITS)
696 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; 697 "https://support.google.com/chrome/?p=ui_mac_32bit_support";
697 #else 698 #else
698 ""; 699 "";
699 #endif 700 #endif
700 #endif 701 #endif
701 702
702 } // namespace chrome 703 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698