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

Side by Side Diff: components/translate/core/browser/translate_script.cc

Issue 1970833002: Fix include path for moved thread_task_runner_handle.h header in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393009 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/translate/core/browser/translate_script.h" 5 #include "components/translate/core/browser/translate_script.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/location.h" 9 #include "base/location.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/profiler/scoped_tracker.h" 11 #include "base/profiler/scoped_tracker.h"
12 #include "base/single_thread_task_runner.h" 12 #include "base/single_thread_task_runner.h"
13 #include "base/strings/string_piece.h" 13 #include "base/strings/string_piece.h"
14 #include "base/strings/string_util.h" 14 #include "base/strings/string_util.h"
15 #include "base/strings/stringprintf.h" 15 #include "base/strings/stringprintf.h"
16 #include "base/thread_task_runner_handle.h" 16 #include "base/threading/thread_task_runner_handle.h"
17 #include "build/build_config.h" 17 #include "build/build_config.h"
18 #include "components/translate/core/browser/translate_url_fetcher.h" 18 #include "components/translate/core/browser/translate_url_fetcher.h"
19 #include "components/translate/core/browser/translate_url_util.h" 19 #include "components/translate/core/browser/translate_url_util.h"
20 #include "components/translate/core/common/translate_switches.h" 20 #include "components/translate/core/common/translate_switches.h"
21 #include "components/translate/core/common/translate_util.h" 21 #include "components/translate/core/common/translate_util.h"
22 #include "google_apis/google_api_keys.h" 22 #include "google_apis/google_api_keys.h"
23 #include "grit/components_resources.h" 23 #include "grit/components_resources.h"
24 #include "net/base/escape.h" 24 #include "net/base/escape.h"
25 #include "net/base/url_util.h" 25 #include "net/base/url_util.h"
26 #include "ui/base/resource/resource_bundle.h" 26 #include "ui/base/resource/resource_bundle.h"
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 153
154 for (RequestCallbackList::iterator it = callback_list_.begin(); 154 for (RequestCallbackList::iterator it = callback_list_.begin();
155 it != callback_list_.end(); 155 it != callback_list_.end();
156 ++it) { 156 ++it) {
157 it->Run(success, data); 157 it->Run(success, data);
158 } 158 }
159 callback_list_.clear(); 159 callback_list_.clear();
160 } 160 }
161 161
162 } // namespace translate 162 } // namespace translate
OLDNEW
« no previous file with comments | « components/translate/content/renderer/translate_helper.cc ('k') | components/update_client/action.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698