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

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

Issue 1815563004: Remove iOS ifdefs in src/content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "content/public/common/url_utils.h" 5 #include "content/public/common/url_utils.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "content/common/savable_url_schemes.h" 8 #include "content/common/savable_url_schemes.h"
9 #include "content/public/common/url_constants.h" 9 #include "content/public/common/url_constants.h"
10 #include "url/gurl.h" 10 #include "url/gurl.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 const char* const* GetSavableSchemes() { 14 const char* const* GetSavableSchemes() {
15 return GetSavableSchemesInternal(); 15 return GetSavableSchemesInternal();
16 } 16 }
17 17
18 bool HasWebUIScheme(const GURL& url) { 18 bool HasWebUIScheme(const GURL& url) {
19 return 19 return url.SchemeIs(kChromeDevToolsScheme) ||
20 #if !defined(OS_IOS)
21 url.SchemeIs(kChromeDevToolsScheme) ||
22 #endif
23 url.SchemeIs(kChromeUIScheme); 20 url.SchemeIs(kChromeUIScheme);
24 } 21 }
25 22
26 bool IsSavableURL(const GURL& url) { 23 bool IsSavableURL(const GURL& url) {
27 for (int i = 0; GetSavableSchemes()[i] != NULL; ++i) { 24 for (int i = 0; GetSavableSchemes()[i] != NULL; ++i) {
28 if (url.SchemeIs(GetSavableSchemes()[i])) 25 if (url.SchemeIs(GetSavableSchemes()[i]))
29 return true; 26 return true;
30 } 27 }
31 return false; 28 return false;
32 } 29 }
33 30
34 } // namespace content 31 } // namespace content
OLDNEW
« no previous file with comments | « content/public/common/content_switches.cc ('k') | content/public/test/content_test_suite_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698