OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <set> | |
11 #include <string> | 10 #include <string> |
12 #include <vector> | 11 #include <vector> |
13 | 12 |
14 #include "base/command_line.h" | 13 #include "base/command_line.h" |
15 #include "base/file_path.h" | 14 #include "base/file_path.h" |
16 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
17 #include "base/linked_ptr.h" | 16 #include "base/linked_ptr.h" |
18 #include "base/ref_counted.h" | 17 #include "base/ref_counted.h" |
19 #include "base/task.h" | 18 #include "base/task.h" |
20 #include "base/time.h" | 19 #include "base/time.h" |
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 FRIEND_TEST_ALL_PREFIXES(ExtensionsServiceTest, | 600 FRIEND_TEST_ALL_PREFIXES(ExtensionsServiceTest, |
602 UpdatePendingExtensionAlreadyInstalled); | 601 UpdatePendingExtensionAlreadyInstalled); |
603 FRIEND_TEST_ALL_PREFIXES(ExtensionsServiceTest, | 602 FRIEND_TEST_ALL_PREFIXES(ExtensionsServiceTest, |
604 InstallAppsWithUnlimtedStorage); | 603 InstallAppsWithUnlimtedStorage); |
605 FRIEND_TEST_ALL_PREFIXES(ExtensionsServiceTest, | 604 FRIEND_TEST_ALL_PREFIXES(ExtensionsServiceTest, |
606 InstallAppsAndCheckStorageProtection); | 605 InstallAppsAndCheckStorageProtection); |
607 DISALLOW_COPY_AND_ASSIGN(ExtensionsService); | 606 DISALLOW_COPY_AND_ASSIGN(ExtensionsService); |
608 }; | 607 }; |
609 | 608 |
610 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_ | 609 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_ |
OLD | NEW |