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

Side by Side Diff: chrome/browser/download/download_history.h

Issue 6932046: Added DownloadProcessHandle class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: download_process_handle Created 9 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 | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698