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

Side by Side Diff: chrome/browser/ui/webui/options/chromeos/language_chewing_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_CHEWING_HANDLER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_LANGUAGE_CHEWING_HANDLER_H_
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_LANGUAGE_CHEWING_HANDLER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_LANGUAGE_CHEWING_HANDLER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "chrome/browser/ui/webui/options/options_ui.h" 11 #include "chrome/browser/ui/webui/options/options_ui.h"
12 12
13 namespace base {
13 class DictionaryValue; 14 class DictionaryValue;
15 }
14 16
15 namespace chromeos { 17 namespace chromeos {
16 18
17 // Chewing options page UI handler. 19 // Chewing options page UI handler.
18 class LanguageChewingHandler : public OptionsPageUIHandler { 20 class LanguageChewingHandler : public OptionsPageUIHandler {
19 public: 21 public:
20 LanguageChewingHandler(); 22 LanguageChewingHandler();
21 virtual ~LanguageChewingHandler(); 23 virtual ~LanguageChewingHandler();
22 24
23 // OptionsPageUIHandler implementation. 25 // OptionsPageUIHandler implementation.
24 virtual void GetLocalizedValues(DictionaryValue* localized_strings) OVERRIDE; 26 virtual void GetLocalizedValues(
27 base::DictionaryValue* localized_strings) OVERRIDE;
25 28
26 private: 29 private:
27 DISALLOW_COPY_AND_ASSIGN(LanguageChewingHandler); 30 DISALLOW_COPY_AND_ASSIGN(LanguageChewingHandler);
28 }; 31 };
29 32
30 } // namespace chromeos 33 } // namespace chromeos
31 34
32 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_LANGUAGE_CHEWING_HANDLER_H_ 35 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_LANGUAGE_CHEWING_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698