OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 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/webui/settings_utils.h" | |
6 | |
7 #include "chrome/browser/extensions/extension_tab_util.h" | |
8 #include "components/url_formatter/url_fixer.h" | |
9 #include "url/gurl.h" | |
10 | |
11 namespace settings_utils { | |
12 | |
13 bool FixupAndValidateStartupPage(const std::string& url_string, | |
14 GURL* url_fixed) { | |
dpapad
2016/03/31 20:34:08
Nit: s/url_fixed/fixed_url, or change startup_page
Dan Beam
2016/03/31 22:04:40
Done.
| |
15 GURL url = url_formatter::FixupURL(url_string, std::string()); | |
16 bool valid = url.is_valid() && !extensions::ExtensionTabUtil::IsKillURL(url); | |
17 if (valid && url_fixed) | |
18 url_fixed->Swap(&url); | |
19 return valid; | |
20 } | |
21 | |
22 } // namespace settings_utils | |
OLD | NEW |