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

Side by Side Diff: components/quirks/quirks_client.cc

Issue 2691243003: Reland of move header dependencies from sequence_checker.h to sequenced_worker_pool.h (Closed)
Patch Set: Created 3 years, 10 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "components/quirks/quirks_client.h" 5 #include "components/quirks/quirks_client.h"
6 6
7 #include "base/base64.h" 7 #include "base/base64.h"
8 #include "base/files/file_util.h" 8 #include "base/files/file_util.h"
9 #include "base/json/json_reader.h" 9 #include "base/json/json_reader.h"
10 #include "base/strings/stringprintf.h" 10 #include "base/strings/stringprintf.h"
11 #include "base/task_runner_util.h" 11 #include "base/task_runner_util.h"
12 #include "base/threading/sequenced_worker_pool.h"
12 #include "components/prefs/scoped_user_pref_update.h" 13 #include "components/prefs/scoped_user_pref_update.h"
13 #include "components/quirks/quirks_manager.h" 14 #include "components/quirks/quirks_manager.h"
14 #include "components/version_info/version_info.h" 15 #include "components/version_info/version_info.h"
15 #include "net/base/load_flags.h" 16 #include "net/base/load_flags.h"
16 #include "net/http/http_status_code.h" 17 #include "net/http/http_status_code.h"
17 #include "net/url_request/url_fetcher.h" 18 #include "net/url_request/url_fetcher.h"
18 #include "net/url_request/url_request_context_getter.h" 19 #include "net/url_request/url_request_context_getter.h"
19 20
20 namespace quirks { 21 namespace quirks {
21 22
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 170
170 if (!base::Base64Decode(data64, data)) { 171 if (!base::Base64Decode(data64, data)) {
171 VLOG(1) << "Failed to decode Base64 icc data"; 172 VLOG(1) << "Failed to decode Base64 icc data";
172 return false; 173 return false;
173 } 174 }
174 175
175 return true; 176 return true;
176 } 177 }
177 178
178 } // namespace quirks 179 } // namespace quirks
OLDNEW
« no previous file with comments | « components/policy/core/common/cloud/device_management_service.h ('k') | components/quirks/quirks_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698