| Index: chrome/browser/history/url_database.cc
|
| diff --git a/chrome/browser/history/url_database.cc b/chrome/browser/history/url_database.cc
|
| index 605213b135e371ba7d38a449a7751bc39df394a3..3e54eba2bd8bac8614c733b96d80d691108d0f20 100644
|
| --- a/chrome/browser/history/url_database.cc
|
| +++ b/chrome/browser/history/url_database.cc
|
| @@ -16,6 +16,7 @@
|
| #include "sql/statement.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| #include "url/gurl.h"
|
| +#include "url/url_constants.h"
|
|
|
| namespace history {
|
|
|
| @@ -313,8 +314,8 @@ bool URLDatabase::AutocompleteForPrefix(const std::string& prefix,
|
|
|
| bool URLDatabase::IsTypedHost(const std::string& host) {
|
| const char* schemes[] = {
|
| - content::kHttpScheme,
|
| - content::kHttpsScheme,
|
| + url::kHttpScheme,
|
| + url::kHttpsScheme,
|
| content::kFtpScheme
|
| };
|
| URLRows dummy;
|
|
|