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/autocomplete/autocomplete_input.h" | 5 #include "chrome/browser/autocomplete/autocomplete_input.h" |
6 | 6 |
7 #include "base/string_util.h" | 7 #include "base/strings/string_util.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "chrome/browser/external_protocol/external_protocol_handler.h" | 9 #include "chrome/browser/external_protocol/external_protocol_handler.h" |
10 #include "chrome/browser/net/url_fixer_upper.h" | 10 #include "chrome/browser/net/url_fixer_upper.h" |
11 #include "chrome/browser/profiles/profile_io_data.h" | 11 #include "chrome/browser/profiles/profile_io_data.h" |
12 #include "content/public/common/url_constants.h" | 12 #include "content/public/common/url_constants.h" |
13 #include "googleurl/src/url_canon_ip.h" | 13 #include "googleurl/src/url_canon_ip.h" |
14 #include "net/base/net_util.h" | 14 #include "net/base/net_util.h" |
15 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" | 15 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
16 | 16 |
17 namespace { | 17 namespace { |
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
509 current_url_ = GURL(); | 509 current_url_ = GURL(); |
510 type_ = INVALID; | 510 type_ = INVALID; |
511 parts_ = url_parse::Parsed(); | 511 parts_ = url_parse::Parsed(); |
512 scheme_.clear(); | 512 scheme_.clear(); |
513 canonicalized_url_ = GURL(); | 513 canonicalized_url_ = GURL(); |
514 prevent_inline_autocomplete_ = false; | 514 prevent_inline_autocomplete_ = false; |
515 prefer_keyword_ = false; | 515 prefer_keyword_ = false; |
516 allow_exact_keyword_match_ = false; | 516 allow_exact_keyword_match_ = false; |
517 matches_requested_ = ALL_MATCHES; | 517 matches_requested_ = ALL_MATCHES; |
518 } | 518 } |
OLD | NEW |