OLD | NEW |
---|---|
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
Paweł Hajdan Jr.
2011/05/05 20:13:51
nit: Let's just remove this file from CL.
ahendrickson
2011/05/06 16:16:50
Done.
| |
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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/history/history_types.h" | 9 #include "chrome/browser/history/history_types.h" |
10 | 10 |
11 struct DownloadCreateInfo; | 11 struct DownloadCreateInfo; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
62 // would re-initialize it. | 62 // would re-initialize it. |
63 bool DropDownloadTable(); | 63 bool DropDownloadTable(); |
64 | 64 |
65 private: | 65 private: |
66 DISALLOW_COPY_AND_ASSIGN(DownloadDatabase); | 66 DISALLOW_COPY_AND_ASSIGN(DownloadDatabase); |
67 }; | 67 }; |
68 | 68 |
69 } // namespace history | 69 } // namespace history |
70 | 70 |
71 #endif // CHROME_BROWSER_HISTORY_DOWNLOAD_DATABASE_H_ | 71 #endif // CHROME_BROWSER_HISTORY_DOWNLOAD_DATABASE_H_ |
OLD | NEW |