| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 // Defines the classes to realize the Font Settings Extension API as specified | 5 // Defines the classes to realize the Font Settings Extension API as specified |
| 6 // in the extension API JSON. | 6 // in the extension API JSON. |
| 7 | 7 |
| 8 #ifndef CHROME_BROWSER_EXTENSIONS_API_FONT_SETTINGS_FONT_SETTINGS_API_H__ | 8 #ifndef CHROME_BROWSER_EXTENSIONS_API_FONT_SETTINGS_FONT_SETTINGS_API_H__ |
| 9 #define CHROME_BROWSER_EXTENSIONS_API_FONT_SETTINGS_FONT_SETTINGS_API_H__ | 9 #define CHROME_BROWSER_EXTENSIONS_API_FONT_SETTINGS_FONT_SETTINGS_API_H__ |
| 10 | 10 |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/prefs/public/pref_change_registrar.h" | 14 #include "base/prefs/public/pref_change_registrar.h" |
| 15 #include "chrome/browser/extensions/api/profile_keyed_api_factory.h" |
| 15 #include "chrome/browser/extensions/event_router.h" | 16 #include "chrome/browser/extensions/event_router.h" |
| 16 #include "chrome/browser/extensions/extension_function.h" | 17 #include "chrome/browser/extensions/extension_function.h" |
| 17 #include "chrome/browser/prefs/pref_service.h" | 18 #include "chrome/browser/prefs/pref_service.h" |
| 18 #include "chrome/browser/profiles/profile_keyed_service.h" | |
| 19 | 19 |
| 20 class Profile; | 20 class Profile; |
| 21 | 21 |
| 22 namespace extensions { | 22 namespace extensions { |
| 23 | 23 |
| 24 // This class observes pref changed events on a profile and dispatches the | 24 // This class observes pref changed events on a profile and dispatches the |
| 25 // corresponding extension API events to extensions. | 25 // corresponding extension API events to extensions. |
| 26 class FontSettingsEventRouter { | 26 class FontSettingsEventRouter { |
| 27 public: | 27 public: |
| 28 // Constructor for observing pref changed events on |profile|. Stores a | 28 // Constructor for observing pref changed events on |profile|. Stores a |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 // Weak, owns us (transitively via ExtensionService). | 64 // Weak, owns us (transitively via ExtensionService). |
| 65 Profile* profile_; | 65 Profile* profile_; |
| 66 | 66 |
| 67 DISALLOW_COPY_AND_ASSIGN(FontSettingsEventRouter); | 67 DISALLOW_COPY_AND_ASSIGN(FontSettingsEventRouter); |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 // The profile-keyed service that manages the font_settings extension API. | 70 // The profile-keyed service that manages the font_settings extension API. |
| 71 // This is not an EventRouter::Observer (and does not lazily initialize) because | 71 // This is not an EventRouter::Observer (and does not lazily initialize) because |
| 72 // doing so caused a regression in perf tests. See crbug.com/163466. | 72 // doing so caused a regression in perf tests. See crbug.com/163466. |
| 73 class FontSettingsAPI : public ProfileKeyedService { | 73 class FontSettingsAPI : public ProfileKeyedAPI { |
| 74 public: | 74 public: |
| 75 explicit FontSettingsAPI(Profile* profile); | 75 explicit FontSettingsAPI(Profile* profile); |
| 76 virtual ~FontSettingsAPI(); | 76 virtual ~FontSettingsAPI(); |
| 77 | 77 |
| 78 // ProfileKeyedAPI implementation. |
| 79 static ProfileKeyedAPIFactory<FontSettingsAPI>* GetFactoryInstance(); |
| 80 |
| 78 private: | 81 private: |
| 82 friend class ProfileKeyedAPIFactory<FontSettingsAPI>; |
| 83 |
| 84 // ProfileKeyedAPI implementation. |
| 85 static const char* service_name() { |
| 86 return "FontSettingsAPI"; |
| 87 } |
| 88 static const bool kServiceIsNULLWhileTesting = true; |
| 89 |
| 79 scoped_ptr<FontSettingsEventRouter> font_settings_event_router_; | 90 scoped_ptr<FontSettingsEventRouter> font_settings_event_router_; |
| 80 }; | 91 }; |
| 81 | 92 |
| 82 // fontSettings.clearFont API function. | 93 // fontSettings.clearFont API function. |
| 83 class ClearFontFunction : public SyncExtensionFunction { | 94 class ClearFontFunction : public SyncExtensionFunction { |
| 84 public: | 95 public: |
| 85 DECLARE_EXTENSION_FUNCTION_NAME("fontSettings.clearFont") | 96 DECLARE_EXTENSION_FUNCTION_NAME("fontSettings.clearFont") |
| 86 | 97 |
| 87 protected: | 98 protected: |
| 88 // RefCounted types have non-public destructors, as with all extension | 99 // RefCounted types have non-public destructors, as with all extension |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 virtual ~SetMinimumFontSizeFunction() {} | 296 virtual ~SetMinimumFontSizeFunction() {} |
| 286 | 297 |
| 287 // SetFontPrefExtensionFunction: | 298 // SetFontPrefExtensionFunction: |
| 288 virtual const char* GetPrefName() OVERRIDE; | 299 virtual const char* GetPrefName() OVERRIDE; |
| 289 virtual const char* GetKey() OVERRIDE; | 300 virtual const char* GetKey() OVERRIDE; |
| 290 }; | 301 }; |
| 291 | 302 |
| 292 } // namespace extensions | 303 } // namespace extensions |
| 293 | 304 |
| 294 #endif // CHROME_BROWSER_EXTENSIONS_API_FONT_SETTINGS_FONT_SETTINGS_API_H__ | 305 #endif // CHROME_BROWSER_EXTENSIONS_API_FONT_SETTINGS_FONT_SETTINGS_API_H__ |
| OLD | NEW |