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

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

Issue 601733002: Rename component_resources.h to components_resources.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: output_name hack Created 6 years, 2 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/logging.h" 9 #include "base/logging.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/strings/string_piece.h" 11 #include "base/strings/string_piece.h"
12 #include "base/strings/string_util.h" 12 #include "base/strings/string_util.h"
13 #include "base/strings/stringprintf.h" 13 #include "base/strings/stringprintf.h"
14 #include "components/translate/core/browser/translate_url_fetcher.h" 14 #include "components/translate/core/browser/translate_url_fetcher.h"
15 #include "components/translate/core/browser/translate_url_util.h" 15 #include "components/translate/core/browser/translate_url_util.h"
16 #include "components/translate/core/common/translate_switches.h" 16 #include "components/translate/core/common/translate_switches.h"
17 #include "components/translate/core/common/translate_util.h" 17 #include "components/translate/core/common/translate_util.h"
18 #include "google_apis/google_api_keys.h" 18 #include "google_apis/google_api_keys.h"
19 #include "grit/component_resources.h" 19 #include "grit/components_resources.h"
20 #include "net/base/escape.h" 20 #include "net/base/escape.h"
21 #include "net/base/url_util.h" 21 #include "net/base/url_util.h"
22 #include "ui/base/resource/resource_bundle.h" 22 #include "ui/base/resource/resource_bundle.h"
23 23
24 namespace translate { 24 namespace translate {
25 25
26 namespace { 26 namespace {
27 27
28 const int kExpirationDelayDays = 1; 28 const int kExpirationDelayDays = 1;
29 29
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 149
150 for (RequestCallbackList::iterator it = callback_list_.begin(); 150 for (RequestCallbackList::iterator it = callback_list_.begin();
151 it != callback_list_.end(); 151 it != callback_list_.end();
152 ++it) { 152 ++it) {
153 it->Run(success, data); 153 it->Run(success, data);
154 } 154 }
155 callback_list_.clear(); 155 callback_list_.clear();
156 } 156 }
157 157
158 } // namespace translate 158 } // namespace translate
OLDNEW
« components/resources/BUILD.gn ('K') | « components/resources/components_scaled_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698