| OLD | NEW |
| 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_CHROMEOS_DRIVE_DRIVE_PROTOCOL_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_PROTOCOL_HANDLER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_PROTOCOL_HANDLER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_PROTOCOL_HANDLER_H_ |
| 7 | 7 |
| 8 #include "net/url_request/url_request_job_factory.h" | 8 #include "net/url_request/url_request_job_factory.h" |
| 9 | 9 |
| 10 namespace gdata { | 10 namespace drive { |
| 11 | 11 |
| 12 class DriveProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler { | 12 class DriveProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler { |
| 13 public: | 13 public: |
| 14 DriveProtocolHandler(); | 14 DriveProtocolHandler(); |
| 15 virtual ~DriveProtocolHandler(); | 15 virtual ~DriveProtocolHandler(); |
| 16 // Creates URLRequestJobs for drive:// URLs. | 16 // Creates URLRequestJobs for drive:// URLs. |
| 17 virtual net::URLRequestJob* MaybeCreateJob( | 17 virtual net::URLRequestJob* MaybeCreateJob( |
| 18 net::URLRequest* request, | 18 net::URLRequest* request, |
| 19 net::NetworkDelegate* network_delegate) const OVERRIDE; | 19 net::NetworkDelegate* network_delegate) const OVERRIDE; |
| 20 }; | 20 }; |
| 21 | 21 |
| 22 } // namespace gdata | 22 } // namespace drive |
| 23 | 23 |
| 24 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_PROTOCOL_HANDLER_H_ | 24 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_PROTOCOL_HANDLER_H_ |
| OLD | NEW |