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

Side by Side Diff: content/public/common/url_constants.cc

Issue 2332263002: Updated suborigin serialization to latest spec proposal (Closed)
Patch Set: Actually disable test Created 4 years, 3 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
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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/url_constants.h" 6 #include "content/public/common/url_constants.h"
7 7
8 namespace content { 8 namespace content {
9 9
10 // Before adding new chrome schemes please check with security@chromium.org. 10 // Before adding new chrome schemes please check with security@chromium.org.
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 const char kChromeUIPpapiFlashHangURL[] = "chrome://ppapiflashhang"; 56 const char kChromeUIPpapiFlashHangURL[] = "chrome://ppapiflashhang";
57 57
58 // This error URL is loaded in normal web renderer processes, so it should not 58 // This error URL is loaded in normal web renderer processes, so it should not
59 // have a chrome:// scheme that might let it be confused with a WebUI page. 59 // have a chrome:// scheme that might let it be confused with a WebUI page.
60 const char kUnreachableWebDataURL[] = "data:text/html,chromewebdata"; 60 const char kUnreachableWebDataURL[] = "data:text/html,chromewebdata";
61 61
62 const char kChromeUINetworkViewCacheURL[] = "chrome://view-http-cache/"; 62 const char kChromeUINetworkViewCacheURL[] = "chrome://view-http-cache/";
63 const char kChromeUIResourcesURL[] = "chrome://resources/"; 63 const char kChromeUIResourcesURL[] = "chrome://resources/";
64 const char kChromeUIShorthangURL[] = "chrome://shorthang"; 64 const char kChromeUIShorthangURL[] = "chrome://shorthang";
65 65
66 const char kHttpSuboriginScheme[] = "http-so";
67 const char kHttpsSuboriginScheme[] = "https-so";
68
66 } // namespace content 69 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698