Save errno for logging before potentially overwriting it.
[chromium-blink-merge.git] / content / public / common / url_utils.cc
blobe12a18bde2cff0d4e3e112f2af6176fbdef4d759
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
3 // found in the LICENSE file.
5 #include "content/public/common/url_utils.h"
7 #include "build/build_config.h"
8 #include "content/common/savable_url_schemes.h"
9 #include "content/public/common/url_constants.h"
10 #include "googleurl/src/gurl.h"
12 namespace content {
14 const char* const* GetSavableSchemes() {
15 return GetSavableSchemesInternal();
18 bool HasWebUIScheme(const GURL& url) {
19 return
20 #if !defined(OS_IOS)
21 url.SchemeIs(chrome::kChromeDevToolsScheme) ||
22 url.SchemeIs(chrome::kChromeInternalScheme) ||
23 #endif
24 url.SchemeIs(chrome::kChromeUIScheme);
27 bool IsSavableURL(const GURL& url) {
28 for (int i = 0; GetSavableSchemes()[i] != NULL; ++i) {
29 if (url.SchemeIs(GetSavableSchemes()[i]))
30 return true;
32 return false;
35 } // namespace content