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

Side by Side Diff: chrome/browser/ui/webui/options/chromeos/internet_options_handler_strings.cc

Issue 2276823003: Change many chrome/browser includes to use qualified paths. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 3 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) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "chrome/browser/ui/webui/options/chromeos/internet_options_handler_stri ngs.h" 5 #include "chrome/browser/ui/webui/options/chromeos/internet_options_handler_stri ngs.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/values.h" 10 #include "base/values.h"
11 #include "chrome/grit/generated_resources.h" 11 #include "chrome/grit/generated_resources.h"
12 #include "grit/components_strings.h" 12 #include "components/strings/grit/components_strings.h"
13 #include "ui/base/l10n/l10n_util.h" 13 #include "ui/base/l10n/l10n_util.h"
14 #include "ui/chromeos/strings/grit/ui_chromeos_strings.h" 14 #include "ui/chromeos/strings/grit/ui_chromeos_strings.h"
15 15
16 namespace chromeos { 16 namespace chromeos {
17 namespace internet_options_strings { 17 namespace internet_options_strings {
18 18
19 namespace { 19 namespace {
20 20
21 struct StringResource { 21 struct StringResource {
22 const char* name; 22 const char* name;
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 void RegisterLocalizedStrings(base::DictionaryValue* localized_strings) { 198 void RegisterLocalizedStrings(base::DictionaryValue* localized_strings) {
199 for (size_t i = 0; i < kStringResourcesLength; ++i) { 199 for (size_t i = 0; i < kStringResourcesLength; ++i) {
200 localized_strings->SetString( 200 localized_strings->SetString(
201 kStringResources[i].name, 201 kStringResources[i].name,
202 l10n_util::GetStringUTF16(kStringResources[i].id)); 202 l10n_util::GetStringUTF16(kStringResources[i].id));
203 } 203 }
204 } 204 }
205 205
206 } // namespace internet_options_strings 206 } // namespace internet_options_strings
207 } // namespace chromeos 207 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698