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

Side by Side Diff: chrome/service/cloud_print/cloud_print_auth.cc

Issue 1967773004: Fix include path for moved thread_task_runner_handle.h header in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393013 Created 4 years, 7 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/service/cloud_print/cloud_print_auth.h" 5 #include "chrome/service/cloud_print/cloud_print_auth.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "base/metrics/histogram.h" 9 #include "base/metrics/histogram.h"
10 #include "base/single_thread_task_runner.h" 10 #include "base/single_thread_task_runner.h"
11 #include "base/strings/string_util.h" 11 #include "base/strings/string_util.h"
12 #include "base/thread_task_runner_handle.h" 12 #include "base/threading/thread_task_runner_handle.h"
13 #include "chrome/common/cloud_print/cloud_print_constants.h" 13 #include "chrome/common/cloud_print/cloud_print_constants.h"
14 #include "chrome/common/cloud_print/cloud_print_helpers.h" 14 #include "chrome/common/cloud_print/cloud_print_helpers.h"
15 #include "chrome/service/cloud_print/cloud_print_token_store.h" 15 #include "chrome/service/cloud_print/cloud_print_token_store.h"
16 #include "chrome/service/net/service_url_request_context_getter.h" 16 #include "chrome/service/net/service_url_request_context_getter.h"
17 #include "chrome/service/service_process.h" 17 #include "chrome/service/service_process.h"
18 #include "google_apis/gaia/gaia_urls.h" 18 #include "google_apis/gaia/gaia_urls.h"
19 19
20 namespace cloud_print { 20 namespace cloud_print {
21 21
22 namespace { 22 namespace {
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 DCHECK(!client_login_token_.empty()); 215 DCHECK(!client_login_token_.empty());
216 std::string header; 216 std::string header;
217 header = "Authorization: GoogleLogin auth="; 217 header = "Authorization: GoogleLogin auth=";
218 header += client_login_token_; 218 header += client_login_token_;
219 return header; 219 return header;
220 } 220 }
221 221
222 CloudPrintAuth::~CloudPrintAuth() {} 222 CloudPrintAuth::~CloudPrintAuth() {}
223 223
224 } // namespace cloud_print 224 } // namespace cloud_print
OLDNEW
« no previous file with comments | « chrome/renderer/spellchecker/spellcheck.cc ('k') | chrome/service/cloud_print/cloud_print_connector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698