OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_UI_ACCOUNT_TWEAKS_H_ | |
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_UI_ACCOUNT_TWEAKS_H_ | |
7 #pragma once | |
8 | |
9 #include "base/values.h" | |
10 #include "base/compiler_specific.h" | |
11 #include "chrome/browser/ui/webui/chrome_web_ui_data_source.h" | |
12 | |
13 namespace chromeos { | |
14 | |
15 // Add values required by JS part to localized values. | |
16 void AddAccountUITweaksLocalizedValues( | |
17 base::DictionaryValue* localized_strings); | |
Nikita (slow)
2012/04/06 12:36:09
nit: align
Denis Kuznetsov (DE-MUC)
2012/04/09 11:21:30
Done.
| |
18 | |
19 void AddAccountUITweaksLocalizedValues( | |
20 ChromeWebUIDataSource* source); | |
21 } // namespace chromeos | |
22 | |
23 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_UI_ACCOUNT_TWEAKS_H_ | |
OLD | NEW |