Chromium Code Reviews| 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: Could you just remove this file from the 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_DOWNLOAD_DOWNLOAD_HISTORY_H_ | 5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_HISTORY_H_ |
| 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_HISTORY_H_ | 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_HISTORY_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "chrome/browser/history/history.h" | 10 #include "chrome/browser/history/history.h" |
| 11 #include "content/browser/cancelable_request.h" | 11 #include "content/browser/cancelable_request.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 60 // Downloads are expected to have unique handles, so we decrement the next | 60 // Downloads are expected to have unique handles, so we decrement the next |
| 61 // fake handle value on every use. | 61 // fake handle value on every use. |
| 62 int64 next_fake_db_handle_; | 62 int64 next_fake_db_handle_; |
| 63 | 63 |
| 64 CancelableRequestConsumer history_consumer_; | 64 CancelableRequestConsumer history_consumer_; |
| 65 | 65 |
| 66 DISALLOW_COPY_AND_ASSIGN(DownloadHistory); | 66 DISALLOW_COPY_AND_ASSIGN(DownloadHistory); |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_HISTORY_H_ | 69 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_HISTORY_H_ |
| OLD | NEW |