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

Side by Side Diff: components/drive/service/drive_api_service.cc

Issue 1190203002: Move (most of) chrome/browser/drive into components/drive/service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added specific owners for components/drive.gypi Created 5 years, 6 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
OLDNEW
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/drive/drive_api_service.h" 5 #include "components/drive/service/drive_api_service.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
12 #include "chrome/browser/drive/drive_api_util.h" 12 #include "components/drive/drive_api_util.h"
13 #include "google_apis/drive/auth_service.h" 13 #include "google_apis/drive/auth_service.h"
14 #include "google_apis/drive/drive_api_parser.h" 14 #include "google_apis/drive/drive_api_parser.h"
15 #include "google_apis/drive/drive_api_requests.h" 15 #include "google_apis/drive/drive_api_requests.h"
16 #include "google_apis/drive/request_sender.h" 16 #include "google_apis/drive/request_sender.h"
17 #include "google_apis/google_api_keys.h" 17 #include "google_apis/google_api_keys.h"
18 #include "net/url_request/url_request_context_getter.h" 18 #include "net/url_request/url_request_context_getter.h"
19 19
20 using google_apis::AboutResourceCallback; 20 using google_apis::AboutResourceCallback;
21 using google_apis::AppList; 21 using google_apis::AppList;
22 using google_apis::AppListCallback; 22 using google_apis::AppListCallback;
(...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after
864 // RequestSender before the request is committed because the request has a 864 // RequestSender before the request is committed because the request has a
865 // reference to RequestSender and we should ensure to delete the request when 865 // reference to RequestSender and we should ensure to delete the request when
866 // the sender is deleted. Resolve the circulating dependency and fix it. 866 // the sender is deleted. Resolve the circulating dependency and fix it.
867 const google_apis::CancelCallback callback = 867 const google_apis::CancelCallback callback =
868 sender_->StartRequestWithRetry(request.release()); 868 sender_->StartRequestWithRetry(request.release());
869 return make_scoped_ptr<BatchRequestConfiguratorInterface>( 869 return make_scoped_ptr<BatchRequestConfiguratorInterface>(
870 new BatchRequestConfigurator(weak_ref, callback)); 870 new BatchRequestConfigurator(weak_ref, callback));
871 } 871 }
872 872
873 } // namespace drive 873 } // namespace drive
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698