| 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 #include "chrome/browser/themes/theme_service.h" | 5 #include "chrome/browser/themes/theme_service.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/memory/ref_counted_memory.h" | 8 #include "base/memory/ref_counted_memory.h" |
| 9 #include "base/prefs/pref_service.h" | 9 #include "base/prefs/pref_service.h" |
| 10 #include "base/sequenced_task_runner.h" |
| 10 #include "base/string_util.h" | 11 #include "base/string_util.h" |
| 11 #include "base/task/sequenced_task_runner.h" | |
| 12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
| 13 #include "chrome/browser/extensions/extension_service.h" | 13 #include "chrome/browser/extensions/extension_service.h" |
| 14 #include "chrome/browser/extensions/extension_system.h" | 14 #include "chrome/browser/extensions/extension_system.h" |
| 15 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
| 16 #include "chrome/browser/themes/browser_theme_pack.h" | 16 #include "chrome/browser/themes/browser_theme_pack.h" |
| 17 #include "chrome/browser/themes/theme_properties.h" | 17 #include "chrome/browser/themes/theme_properties.h" |
| 18 #include "chrome/browser/themes/theme_syncable_service.h" | 18 #include "chrome/browser/themes/theme_syncable_service.h" |
| 19 #include "chrome/common/chrome_constants.h" | 19 #include "chrome/common/chrome_constants.h" |
| 20 #include "chrome/common/chrome_notification_types.h" | 20 #include "chrome/common/chrome_notification_types.h" |
| 21 #include "chrome/common/extensions/extension_manifest_constants.h" | 21 #include "chrome/common/extensions/extension_manifest_constants.h" |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 void ThemeService::OnInfobarDestroyed() { | 419 void ThemeService::OnInfobarDestroyed() { |
| 420 number_of_infobars_--; | 420 number_of_infobars_--; |
| 421 | 421 |
| 422 if (number_of_infobars_ == 0) | 422 if (number_of_infobars_ == 0) |
| 423 RemoveUnusedThemes(); | 423 RemoveUnusedThemes(); |
| 424 } | 424 } |
| 425 | 425 |
| 426 ThemeSyncableService* ThemeService::GetThemeSyncableService() const { | 426 ThemeSyncableService* ThemeService::GetThemeSyncableService() const { |
| 427 return theme_syncable_service_.get(); | 427 return theme_syncable_service_.get(); |
| 428 } | 428 } |
| OLD | NEW |