Chromium Code Reviews| Index: chrome/browser/ui/webui/settings/settings_font_handler.h |
| diff --git a/chrome/browser/ui/webui/settings/settings_font_handler.h b/chrome/browser/ui/webui/settings/settings_font_handler.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0b2355ff88203283119cc3ea87ac54915c2cade5 |
| --- /dev/null |
| +++ b/chrome/browser/ui/webui/settings/settings_font_handler.h |
| @@ -0,0 +1,46 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_UI_WEBUI_SETTINGS_SETTINGS_FONT_HANDLER_H_ |
| +#define CHROME_BROWSER_UI_WEBUI_SETTINGS_SETTINGS_FONT_HANDLER_H_ |
| + |
| +#include "base/macros.h" |
| +#include "base/memory/scoped_ptr.h" |
| +#include "base/memory/weak_ptr.h" |
| +#include "chrome/browser/ui/webui/settings/md_settings_ui.h" |
| + |
| +namespace base { |
| +class ListValue; |
| +} |
| + |
| +namespace content { |
| +class WebUI; |
| +} |
| + |
| +namespace settings { |
| + |
| +// Handle OS font list, font preference settings and character encoding. |
| +class SettingsFontHandler : public SettingsPageUIHandler { |
|
Dan Beam
2015/10/24 01:19:47
out of curiosity, why SettingsFontHandler instead
dschuyler
2015/10/26 15:54:33
I'd like the file name to match. I can change bot
|
| + public: |
| + explicit SettingsFontHandler(content::WebUI* webui); |
| + ~SettingsFontHandler() override; |
| + |
| + // SettingsPageUIHandler implementation. |
| + void RegisterMessages() override; |
| + |
| + private: |
| + // Handler for script asking for font information. |
| + void HandleFetchFontsData(const base::ListValue* args); |
| + |
| + // Callback to handle fonts loading. |
| + void FontListHasLoaded(scoped_ptr<base::ListValue> list); |
| + |
| + base::WeakPtrFactory<SettingsFontHandler> weak_ptr_factory_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(SettingsFontHandler); |
| +}; |
| + |
| +} // namespace settings |
| + |
| +#endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_SETTINGS_FONT_HANDLER_H_ |