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 #include "chrome/browser/chromeos/gdata/gdata_protocol_handler.h" | 5 #include "chrome/browser/chromeos/gdata/gdata_protocol_handler.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/string_number_conversions.h" | 15 #include "base/string_number_conversions.h" |
16 #include "base/string_util.h" | 16 #include "base/string_util.h" |
17 #include "base/threading/sequenced_worker_pool.h" | 17 #include "base/threading/sequenced_worker_pool.h" |
18 #include "base/utf_string_conversions.h" | 18 #include "base/utf_string_conversions.h" |
19 #include "chrome/browser/chromeos/gdata/drive_service_interface.h" | 19 #include "chrome/browser/chromeos/gdata/drive_service_interface.h" |
20 #include "chrome/browser/chromeos/gdata/gdata.pb.h" | 20 #include "chrome/browser/chromeos/gdata/gdata.pb.h" |
21 #include "chrome/browser/chromeos/gdata/gdata_directory_service.h" | 21 #include "chrome/browser/chromeos/gdata/gdata_directory_service.h" |
22 #include "chrome/browser/chromeos/gdata/gdata_errorcode.h" | 22 #include "chrome/browser/chromeos/gdata/gdata_errorcode.h" |
23 #include "chrome/browser/chromeos/gdata/gdata_file_system_interface.h" | 23 #include "chrome/browser/chromeos/gdata/gdata_file_system_interface.h" |
24 #include "chrome/browser/chromeos/gdata/gdata_operation_registry.h" | |
25 #include "chrome/browser/chromeos/gdata/gdata_system_service.h" | 24 #include "chrome/browser/chromeos/gdata/gdata_system_service.h" |
26 #include "chrome/browser/chromeos/gdata/gdata_util.h" | 25 #include "chrome/browser/chromeos/gdata/gdata_util.h" |
26 #include "chrome/browser/chromeos/gdata/gdata_wapi_service.h" | |
kochi
2012/08/21 05:09:23
Removed.
| |
27 #include "chrome/browser/profiles/profile.h" | 27 #include "chrome/browser/profiles/profile.h" |
28 #include "chrome/browser/profiles/profile_manager.h" | 28 #include "chrome/browser/profiles/profile_manager.h" |
29 #include "chrome/common/url_constants.h" | 29 #include "chrome/common/url_constants.h" |
30 #include "content/public/browser/browser_thread.h" | 30 #include "content/public/browser/browser_thread.h" |
31 #include "net/base/escape.h" | 31 #include "net/base/escape.h" |
32 #include "net/base/file_stream.h" | 32 #include "net/base/file_stream.h" |
33 #include "net/base/net_errors.h" | 33 #include "net/base/net_errors.h" |
34 #include "net/http/http_request_headers.h" | 34 #include "net/http/http_request_headers.h" |
35 #include "net/http/http_response_headers.h" | 35 #include "net/http/http_response_headers.h" |
36 #include "net/http/http_response_info.h" | 36 #include "net/http/http_response_info.h" |
(...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
934 GDataProtocolHandler::~GDataProtocolHandler() { | 934 GDataProtocolHandler::~GDataProtocolHandler() { |
935 } | 935 } |
936 | 936 |
937 net::URLRequestJob* GDataProtocolHandler::MaybeCreateJob( | 937 net::URLRequestJob* GDataProtocolHandler::MaybeCreateJob( |
938 net::URLRequest* request) const { | 938 net::URLRequest* request) const { |
939 DVLOG(1) << "Handling url: " << request->url().spec(); | 939 DVLOG(1) << "Handling url: " << request->url().spec(); |
940 return new GDataURLRequestJob(request); | 940 return new GDataURLRequestJob(request); |
941 } | 941 } |
942 | 942 |
943 } // namespace gdata | 943 } // namespace gdata |
OLD | NEW |