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/history/url_index_private_data.h" | 5 #include "chrome/browser/history/url_index_private_data.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <functional> | 8 #include <functional> |
9 #include <iterator> | 9 #include <iterator> |
10 #include <limits> | 10 #include <limits> |
11 #include <numeric> | 11 #include <numeric> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
15 #include "base/file_util.h" | 15 #include "base/file_util.h" |
16 #include "base/i18n/case_conversion.h" | 16 #include "base/i18n/case_conversion.h" |
17 #include "base/metrics/histogram.h" | 17 #include "base/metrics/histogram.h" |
18 #include "base/string_util.h" | 18 #include "base/string_util.h" |
19 #include "base/time.h" | 19 #include "base/time.h" |
20 #include "base/utf_string_conversions.h" | 20 #include "base/utf_string_conversions.h" |
21 #include "chrome/browser/api/bookmarks/bookmark_service.h" | 21 #include "chrome/browser/api/bookmarks/bookmark_service.h" |
22 #include "chrome/browser/autocomplete/autocomplete_provider.h" | 22 #include "chrome/browser/autocomplete/autocomplete_provider.h" |
23 #include "chrome/browser/autocomplete/url_prefix.h" | 23 #include "chrome/browser/autocomplete/url_prefix.h" |
24 #include "chrome/browser/history/history_database.h" | 24 #include "chrome/browser/history/history_database.h" |
25 #include "chrome/browser/history/in_memory_url_index.h" | 25 #include "chrome/browser/history/in_memory_url_index.h" |
26 #include "content/public/browser/browser_thread.h" | |
27 #include "content/public/browser/notification_details.h" | 26 #include "content/public/browser/notification_details.h" |
28 #include "content/public/browser/notification_service.h" | 27 #include "content/public/browser/notification_service.h" |
29 #include "content/public/browser/notification_source.h" | 28 #include "content/public/browser/notification_source.h" |
30 #include "net/base/net_util.h" | 29 #include "net/base/net_util.h" |
31 | 30 |
32 #if defined(USE_SYSTEM_PROTOBUF) | 31 #if defined(USE_SYSTEM_PROTOBUF) |
33 #include <google/protobuf/repeated_field.h> | 32 #include <google/protobuf/repeated_field.h> |
34 #else | 33 #else |
35 #include "third_party/protobuf/src/google/protobuf/repeated_field.h" | 34 #include "third_party/protobuf/src/google/protobuf/repeated_field.h" |
36 #endif | 35 #endif |
(...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1153 } | 1152 } |
1154 | 1153 |
1155 // static | 1154 // static |
1156 bool URLIndexPrivateData::URLSchemeIsWhitelisted( | 1155 bool URLIndexPrivateData::URLSchemeIsWhitelisted( |
1157 const GURL& gurl, | 1156 const GURL& gurl, |
1158 const std::set<std::string>& whitelist) { | 1157 const std::set<std::string>& whitelist) { |
1159 return whitelist.find(gurl.scheme()) != whitelist.end(); | 1158 return whitelist.find(gurl.scheme()) != whitelist.end(); |
1160 } | 1159 } |
1161 | 1160 |
1162 } // namespace history | 1161 } // namespace history |
OLD | NEW |