Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: chrome/browser/history/in_memory_url_index.h

Issue 7353026: Move app/sql/* files to sql/ directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_HISTORY_IN_MEMORY_URL_INDEX_H_ 5 #ifndef CHROME_BROWSER_HISTORY_IN_MEMORY_URL_INDEX_H_
6 #define CHROME_BROWSER_HISTORY_IN_MEMORY_URL_INDEX_H_ 6 #define CHROME_BROWSER_HISTORY_IN_MEMORY_URL_INDEX_H_
7 #pragma once 7 #pragma once
8 8
9 #include <functional> 9 #include <functional>
10 #include <map> 10 #include <map>
11 #include <set> 11 #include <set>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "app/sql/connection.h"
16 #include "base/basictypes.h" 15 #include "base/basictypes.h"
17 #include "base/file_path.h" 16 #include "base/file_path.h"
18 #include "base/gtest_prod_util.h" 17 #include "base/gtest_prod_util.h"
19 #include "base/memory/linked_ptr.h" 18 #include "base/memory/linked_ptr.h"
20 #include "base/memory/scoped_ptr.h" 19 #include "base/memory/scoped_ptr.h"
21 #include "base/string16.h" 20 #include "base/string16.h"
22 #include "chrome/browser/autocomplete/autocomplete_match.h" 21 #include "chrome/browser/autocomplete/autocomplete_match.h"
23 #include "chrome/browser/autocomplete/history_provider_util.h" 22 #include "chrome/browser/autocomplete/history_provider_util.h"
24 #include "chrome/browser/history/history_types.h" 23 #include "chrome/browser/history/history_types.h"
25 #include "chrome/browser/history/in_memory_url_index_cache.pb.h" 24 #include "chrome/browser/history/in_memory_url_index_cache.pb.h"
25 #include "sql/connection.h"
26 #include "testing/gtest/include/gtest/gtest_prod.h" 26 #include "testing/gtest/include/gtest/gtest_prod.h"
27 27
28 class Profile; 28 class Profile;
29 29
30 namespace base { 30 namespace base {
31 class Time; 31 class Time;
32 } 32 }
33 33
34 namespace in_memory_url_index { 34 namespace in_memory_url_index {
35 class InMemoryURLIndexCacheItem; 35 class InMemoryURLIndexCacheItem;
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 411
412 // Only URLs with a whitelisted scheme are indexed. 412 // Only URLs with a whitelisted scheme are indexed.
413 std::set<std::string> scheme_whitelist_; 413 std::set<std::string> scheme_whitelist_;
414 414
415 DISALLOW_COPY_AND_ASSIGN(InMemoryURLIndex); 415 DISALLOW_COPY_AND_ASSIGN(InMemoryURLIndex);
416 }; 416 };
417 417
418 } // namespace history 418 } // namespace history
419 419
420 #endif // CHROME_BROWSER_HISTORY_IN_MEMORY_URL_INDEX_H_ 420 #endif // CHROME_BROWSER_HISTORY_IN_MEMORY_URL_INDEX_H_
OLDNEW
« no previous file with comments | « chrome/browser/history/in_memory_database.h ('k') | chrome/browser/history/in_memory_url_index_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698