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

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

Issue 1700017: Get rid of MetaTableHelper class and make use of the app/sql API in the LoginDatabase. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: fix rebase that removed the chrome_tests.gypi Created 10 years, 7 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
« no previous file with comments | « chrome/browser/history/starred_url_database.cc ('k') | chrome/browser/meta_table_helper.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_THUMBNAIL_DATABASE_H_ 5 #ifndef CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_
6 #define CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_ 6 #define CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "app/sql/connection.h" 10 #include "app/sql/connection.h"
11 #include "app/sql/init_status.h" 11 #include "app/sql/init_status.h"
12 #include "app/sql/meta_table.h" 12 #include "app/sql/meta_table.h"
13 #include "base/ref_counted.h" 13 #include "base/ref_counted.h"
14 #include "chrome/browser/history/history_types.h" 14 #include "chrome/browser/history/history_types.h"
15 #include "chrome/browser/history/url_database.h" // For DBCloseScoper. 15 #include "chrome/browser/history/url_database.h" // For DBCloseScoper.
16 #include "chrome/browser/meta_table_helper.h"
17 16
18 class FilePath; 17 class FilePath;
19 class RefCountedMemory; 18 class RefCountedMemory;
20 struct ThumbnailScore; 19 struct ThumbnailScore;
21 class SkBitmap; 20 class SkBitmap;
22 21
23 namespace base { 22 namespace base {
24 class Time; 23 class Time;
25 } 24 }
26 25
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 // This object is created and managed by the history backend. We maintain an 163 // This object is created and managed by the history backend. We maintain an
165 // opaque pointer to the object for our use. 164 // opaque pointer to the object for our use.
166 // This can be NULL if there are no indexers registered to receive indexing 165 // This can be NULL if there are no indexers registered to receive indexing
167 // data from us. 166 // data from us.
168 const HistoryPublisher* history_publisher_; 167 const HistoryPublisher* history_publisher_;
169 }; 168 };
170 169
171 } // namespace history 170 } // namespace history
172 171
173 #endif // CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_ 172 #endif // CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_
OLDNEW
« no previous file with comments | « chrome/browser/history/starred_url_database.cc ('k') | chrome/browser/meta_table_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698