OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/chromeos/extensions/file_manager/private_api_strings.h" | 5 #include "chrome/browser/chromeos/extensions/file_manager/private_api_strings.h" |
6 | 6 |
7 #include "chrome/browser/chromeos/extensions/file_manager/open_with_browser.h" | 7 #include "chrome/browser/chromeos/file_manager/open_with_browser.h" |
8 #include "chrome/browser/chromeos/system/statistics_provider.h" | 8 #include "chrome/browser/chromeos/system/statistics_provider.h" |
9 #include "chrome/common/extensions/extension_l10n_util.h" | 9 #include "chrome/common/extensions/extension_l10n_util.h" |
10 #include "grit/app_locale_settings.h" | 10 #include "grit/app_locale_settings.h" |
11 #include "grit/generated_resources.h" | 11 #include "grit/generated_resources.h" |
12 #include "ui/base/l10n/l10n_util.h" | 12 #include "ui/base/l10n/l10n_util.h" |
13 #include "ui/webui/web_ui_util.h" | 13 #include "ui/webui/web_ui_util.h" |
14 | 14 |
15 namespace extensions { | 15 namespace extensions { |
16 | 16 |
17 FileBrowserPrivateGetStringsFunction::FileBrowserPrivateGetStringsFunction() { | 17 FileBrowserPrivateGetStringsFunction::FileBrowserPrivateGetStringsFunction() { |
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
526 board = "unknown"; | 526 board = "unknown"; |
527 } | 527 } |
528 dict->SetString(chromeos::system::kMachineInfoBoard, board); | 528 dict->SetString(chromeos::system::kMachineInfoBoard, board); |
529 | 529 |
530 dict->SetString("UI_LOCALE", extension_l10n_util::CurrentLocaleOrDefault()); | 530 dict->SetString("UI_LOCALE", extension_l10n_util::CurrentLocaleOrDefault()); |
531 | 531 |
532 return true; | 532 return true; |
533 } | 533 } |
534 | 534 |
535 } // namespace extensions | 535 } // namespace extensions |
OLD | NEW |