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

Side by Side Diff: chrome/browser/ui/webui/options/chromeos/language_hangul_handler.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_LANGUAGE_HANGUL_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_LANGUAGE_HANGUL_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_LANGUAGE_HANGUL_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_LANGUAGE_HANGUL_HANDLER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/ui/webui/options/options_ui.h" 9 #include "chrome/browser/ui/webui/options/options_ui.h"
10 10
11 namespace base {
11 class DictionaryValue; 12 class DictionaryValue;
12 class ListValue; 13 class ListValue;
14 }
13 15
14 namespace chromeos { 16 namespace chromeos {
15 17
16 // Hangul options page UI handler. 18 // Hangul options page UI handler.
17 class LanguageHangulHandler : public OptionsPageUIHandler { 19 class LanguageHangulHandler : public OptionsPageUIHandler {
18 public: 20 public:
19 LanguageHangulHandler(); 21 LanguageHangulHandler();
20 virtual ~LanguageHangulHandler(); 22 virtual ~LanguageHangulHandler();
21 23
22 // OptionsPageUIHandler implementation. 24 // OptionsPageUIHandler implementation.
23 virtual void GetLocalizedValues(DictionaryValue* localized_strings); 25 virtual void GetLocalizedValues(base::DictionaryValue* localized_strings);
24 26
25 private: 27 private:
26 // Returns the list of hangul keyboards. 28 // Returns the list of hangul keyboards.
27 static ListValue* GetKeyboardLayoutList(); 29 static base::ListValue* GetKeyboardLayoutList();
28 30
29 DISALLOW_COPY_AND_ASSIGN(LanguageHangulHandler); 31 DISALLOW_COPY_AND_ASSIGN(LanguageHangulHandler);
30 }; 32 };
31 33
32 } // namespace chromeos 34 } // namespace chromeos
33 35
34 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_LANGUAGE_HANGUL_HANDLER_H_ 36 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_LANGUAGE_HANGUL_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698