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

Side by Side Diff: chrome/browser/diagnostics/sqlite_diagnostics.h

Issue 10872032: Revert 152946 - Replace HistoryQuickProvider protobuf-based caching with an SQLite-based database. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 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) 2010 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_DIAGNOSTICS_SQLITE_DIAGNOSTICS_H_ 5 #ifndef CHROME_BROWSER_DIAGNOSTICS_SQLITE_DIAGNOSTICS_H_
6 #define CHROME_BROWSER_DIAGNOSTICS_SQLITE_DIAGNOSTICS_H_ 6 #define CHROME_BROWSER_DIAGNOSTICS_SQLITE_DIAGNOSTICS_H_
7 7
8 #include "chrome/browser/diagnostics/diagnostics_test.h" 8 #include "chrome/browser/diagnostics/diagnostics_test.h"
9 9
10 namespace sql { 10 namespace sql {
11 class ErrorDelegate; 11 class ErrorDelegate;
12 } 12 }
13 13
14 // The following five factories create the error handlers that we use when 14 // The following five factories create the error handlers that we use when
15 // issuing sqlite commands during normal browser operation. 15 // issuing sqlite commands during normal browser operation.
16 sql::ErrorDelegate* GetErrorHandlerForCookieDb(); 16 sql::ErrorDelegate* GetErrorHandlerForCookieDb();
17 sql::ErrorDelegate* GetErrorHandlerForHistoryDb(); 17 sql::ErrorDelegate* GetErrorHandlerForHistoryDb();
18 sql::ErrorDelegate* GetErrorHandlerForThumbnailDb(); 18 sql::ErrorDelegate* GetErrorHandlerForThumbnailDb();
19 sql::ErrorDelegate* GetErrorHandlerForTextDb(); 19 sql::ErrorDelegate* GetErrorHandlerForTextDb();
20 sql::ErrorDelegate* GetErrorHandlerForWebDb(); 20 sql::ErrorDelegate* GetErrorHandlerForWebDb();
21 sql::ErrorDelegate* GetErrorHandlerForHQPCacheDb();
22 21
23 // Factories for the db integrity tests we run in diagnostic mode. 22 // Factories for the db integrity tests we run in diagnostic mode.
24 DiagnosticTest* MakeSqliteWebDbTest(); 23 DiagnosticTest* MakeSqliteWebDbTest();
25 DiagnosticTest* MakeSqliteCookiesDbTest(); 24 DiagnosticTest* MakeSqliteCookiesDbTest();
26 DiagnosticTest* MakeSqliteHistoryDbTest(); 25 DiagnosticTest* MakeSqliteHistoryDbTest();
27 DiagnosticTest* MakeSqliteArchivedHistoryDbTest(); 26 DiagnosticTest* MakeSqliteArchivedHistoryDbTest();
28 DiagnosticTest* MakeSqliteThumbnailsDbTest(); 27 DiagnosticTest* MakeSqliteThumbnailsDbTest();
29 DiagnosticTest* MakeSqliteHQPCacheDbTest();
30 DiagnosticTest* MakeSqliteAppCacheDbTest(); 28 DiagnosticTest* MakeSqliteAppCacheDbTest();
31 DiagnosticTest* MakeSqliteWebDatabaseTrackerDbTest(); 29 DiagnosticTest* MakeSqliteWebDatabaseTrackerDbTest();
32 30
33 #endif // CHROME_BROWSER_DIAGNOSTICS_SQLITE_DIAGNOSTICS_H_ 31 #endif // CHROME_BROWSER_DIAGNOSTICS_SQLITE_DIAGNOSTICS_H_
OLDNEW
« no previous file with comments | « chrome/browser/diagnostics/diagnostics_model_unittest.cc ('k') | chrome/browser/diagnostics/sqlite_diagnostics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698