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

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

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
« no previous file with comments | « chrome/browser/history/archived_database.cc ('k') | chrome/browser/history/history_database.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) 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 #ifndef CHROME_BROWSER_HISTORY_DOWNLOAD_DATABASE_H_ 5 #ifndef CHROME_BROWSER_HISTORY_DOWNLOAD_DATABASE_H_
6 #define CHROME_BROWSER_HISTORY_DOWNLOAD_DATABASE_H_ 6 #define CHROME_BROWSER_HISTORY_DOWNLOAD_DATABASE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/threading/platform_thread.h" 11 #include "base/threading/platform_thread.h"
12 #include "sql/meta_table.h" 12 #include "sql/meta_table.h"
13 13
14 class FilePath;
15
16 namespace sql { 14 namespace sql {
17 class Connection; 15 class Connection;
18 } 16 }
19 17
20 namespace history { 18 namespace history {
21 19
22 struct DownloadRow; 20 struct DownloadRow;
23 21
24 // Maintains a table of downloads. 22 // Maintains a table of downloads.
25 class DownloadDatabase { 23 class DownloadDatabase {
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 82
85 int next_id_; 83 int next_id_;
86 int next_db_handle_; 84 int next_db_handle_;
87 85
88 DISALLOW_COPY_AND_ASSIGN(DownloadDatabase); 86 DISALLOW_COPY_AND_ASSIGN(DownloadDatabase);
89 }; 87 };
90 88
91 } // namespace history 89 } // namespace history
92 90
93 #endif // CHROME_BROWSER_HISTORY_DOWNLOAD_DATABASE_H_ 91 #endif // CHROME_BROWSER_HISTORY_DOWNLOAD_DATABASE_H_
OLDNEW
« no previous file with comments | « chrome/browser/history/archived_database.cc ('k') | chrome/browser/history/history_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698