Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/browser/ui/website_settings/website_settings_utils.h" | 5 #include "chrome/browser/ui/website_settings/website_settings_utils.h" |
| 6 | 6 |
| 7 #include "chrome/common/extensions/extension_constants.h" | |
| 7 #include "chrome/common/url_constants.h" | 8 #include "chrome/common/url_constants.h" |
| 8 #include "googleurl/src/gurl.h" | 9 #include "googleurl/src/gurl.h" |
| 9 | 10 |
| 10 // Returns true if the passed |url| refers to an internal chrome page. | 11 // Returns true if the passed |url| refers to an internal chrome page. |
| 11 bool InternalChromePage(const GURL& url) { | 12 bool InternalChromePage(const GURL& url) { |
| 12 return url.SchemeIs(chrome::kChromeInternalScheme) || | 13 return url.SchemeIs(chrome::kChromeInternalScheme) || |
| 13 url.SchemeIs(chrome::kChromeUIScheme); | 14 url.SchemeIs(chrome::kChromeUIScheme) || |
| 15 (url.SchemeIs(chrome::kExtensionScheme) && | |
| 16 url.host() == extension_misc::kBookmarkManagerId); | |
|
markusheintz_
2012/09/24 18:36:21
I think we only need to test for url.SchemeIs(chro
tfarina
2012/09/24 19:19:03
Done.
| |
| 14 } | 17 } |
| OLD | NEW |