OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/ui/website_settings/website_settings_utils.h" |
| 6 |
| 7 #include "chrome/common/url_constants.h" |
| 8 #include "googleurl/src/gurl.h" |
| 9 |
| 10 // Returns true if the passed |url| refers to an internal chrome page. |
| 11 bool InternalChromePage(const GURL& url) { |
| 12 return url.SchemeIs(chrome::kChromeInternalScheme) || |
| 13 url.SchemeIs(chrome::kChromeUIScheme); |
| 14 } |
OLD | NEW |