• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3 // found in the LICENSE file.
4 
5 #ifndef 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
8 
9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h"
11 #include "chrome/browser/ui/webui/options/options_ui.h"
12 
13 class DictionaryValue;
14 
15 namespace chromeos {
16 
17 // Chewing options page UI handler.
18 class LanguageChewingHandler : public OptionsPageUIHandler {
19  public:
20   LanguageChewingHandler();
21   virtual ~LanguageChewingHandler();
22 
23   // OptionsPageUIHandler implementation.
24   virtual void GetLocalizedValues(DictionaryValue* localized_strings) OVERRIDE;
25 
26  private:
27   DISALLOW_COPY_AND_ASSIGN(LanguageChewingHandler);
28 };
29 
30 }  // namespace chromeos
31 
32 #endif  // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_LANGUAGE_CHEWING_HANDLER_H_
33