| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "apps/saved_files_service.h" | 5 #include "apps/saved_files_service.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "apps/saved_files_service_factory.h" | 9 #include "apps/saved_files_service_factory.h" |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/containers/hash_tables.h" | 11 #include "base/containers/hash_tables.h" |
| 12 #include "base/value_conversions.h" | 12 #include "base/value_conversions.h" |
| 13 #include "chrome/browser/chrome_notification_types.h" | 13 #include "chrome/browser/chrome_notification_types.h" |
| 14 #include "chrome/browser/extensions/extension_host.h" | 14 #include "chrome/browser/extensions/extension_host.h" |
| 15 #include "chrome/browser/extensions/extension_prefs.h" | |
| 16 #include "chrome/browser/extensions/extension_service.h" | 15 #include "chrome/browser/extensions/extension_service.h" |
| 17 #include "chrome/browser/extensions/extension_system.h" | 16 #include "chrome/browser/extensions/extension_system.h" |
| 18 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
| 19 #include "content/public/browser/notification_service.h" | 18 #include "content/public/browser/notification_service.h" |
| 19 #include "extensions/browser/extension_prefs.h" |
| 20 #include "extensions/common/permissions/api_permission.h" | 20 #include "extensions/common/permissions/api_permission.h" |
| 21 #include "extensions/common/permissions/permission_set.h" | 21 #include "extensions/common/permissions/permission_set.h" |
| 22 | 22 |
| 23 namespace apps { | 23 namespace apps { |
| 24 | 24 |
| 25 using extensions::APIPermission; | 25 using extensions::APIPermission; |
| 26 using extensions::Extension; | 26 using extensions::Extension; |
| 27 using extensions::ExtensionHost; | 27 using extensions::ExtensionHost; |
| 28 using extensions::ExtensionPrefs; | 28 using extensions::ExtensionPrefs; |
| 29 | 29 |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 void SavedFilesService::SetLruSizeForTest(int size) { | 450 void SavedFilesService::SetLruSizeForTest(int size) { |
| 451 g_max_saved_file_entries = size; | 451 g_max_saved_file_entries = size; |
| 452 } | 452 } |
| 453 | 453 |
| 454 // static | 454 // static |
| 455 void SavedFilesService::ClearLruSizeForTest() { | 455 void SavedFilesService::ClearLruSizeForTest() { |
| 456 g_max_saved_file_entries = kMaxSavedFileEntries; | 456 g_max_saved_file_entries = kMaxSavedFileEntries; |
| 457 } | 457 } |
| 458 | 458 |
| 459 } // namespace apps | 459 } // namespace apps |
| OLD | NEW |