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

Side by Side Diff: chrome/browser/google_apis/gdata_wapi_requests.cc

Issue 63923002: net: Use SequencedTaskRunner for URLFetcherResponseWriter (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add include Created 7 years, 1 month 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) 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/google_apis/gdata_wapi_requests.h" 5 #include "chrome/browser/google_apis/gdata_wapi_requests.h"
6 6
7 #include "base/location.h" 7 #include "base/location.h"
8 #include "base/sequenced_task_runner.h"
8 #include "base/task_runner_util.h" 9 #include "base/task_runner_util.h"
9 #include "base/values.h" 10 #include "base/values.h"
10 #include "chrome/browser/google_apis/gdata_wapi_parser.h" 11 #include "chrome/browser/google_apis/gdata_wapi_parser.h"
11 #include "chrome/browser/google_apis/gdata_wapi_url_generator.h" 12 #include "chrome/browser/google_apis/gdata_wapi_url_generator.h"
12 #include "chrome/browser/google_apis/request_sender.h" 13 #include "chrome/browser/google_apis/request_sender.h"
13 #include "chrome/browser/google_apis/request_util.h" 14 #include "chrome/browser/google_apis/request_util.h"
14 #include "third_party/libxml/chromium/libxml_utils.h" 15 #include "third_party/libxml/chromium/libxml_utils.h"
15 16
16 using net::URLFetcher; 17 using net::URLFetcher;
17 18
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 get_content_callback, 716 get_content_callback,
716 progress_callback, 717 progress_callback,
717 url_generator.GenerateDownloadFileUrl(resource_id), 718 url_generator.GenerateDownloadFileUrl(resource_id),
718 output_file_path) { 719 output_file_path) {
719 } 720 }
720 721
721 DownloadFileRequest::~DownloadFileRequest() { 722 DownloadFileRequest::~DownloadFileRequest() {
722 } 723 }
723 724
724 } // namespace google_apis 725 } // namespace google_apis
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698