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

Unified Diff: chrome/browser/chromeos/drive/drive_protocol_handler.h

Issue 11785018: drive: Add Profile* as a member of DriveProtocolHandler. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add IsValidProfile check in DriveProtocolHandler. Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/drive/drive_protocol_handler.h
diff --git a/chrome/browser/chromeos/drive/drive_protocol_handler.h b/chrome/browser/chromeos/drive/drive_protocol_handler.h
index 4fed4747e2824c0b74d3466323544e8718db0b48..a9b5713c372f9846ef4c8de64577c9ba128b3b06 100644
--- a/chrome/browser/chromeos/drive/drive_protocol_handler.h
+++ b/chrome/browser/chromeos/drive/drive_protocol_handler.h
@@ -7,16 +7,21 @@
#include "net/url_request/url_request_job_factory.h"
+class Profile;
hashimoto 2013/01/07 08:22:51 No need to have this now.
Haruki Sato 2013/01/07 08:54:49 Done. Thanks.
+
namespace drive {
class DriveProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler {
public:
- DriveProtocolHandler();
+ explicit DriveProtocolHandler(void* profile_id);
virtual ~DriveProtocolHandler();
// Creates URLRequestJobs for drive:// URLs.
virtual net::URLRequestJob* MaybeCreateJob(
net::URLRequest* request,
net::NetworkDelegate* network_delegate) const OVERRIDE;
+
+ // The profile for processing Drive accesses. Should not be NULL.
+ void* profile_id_;
};
} // namespace drive

Powered by Google App Engine
This is Rietveld 408576698