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 // TODO(rickcam): Bug 73183: Add unit tests for image loading | 5 // TODO(rickcam): Bug 73183: Add unit tests for image loading |
6 | 6 |
7 #include <cstdlib> | 7 #include <cstdlib> |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "chrome/browser/background/background_application_list_model.h" | 10 #include "chrome/browser/background/background_application_list_model.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 #include "content/public/browser/notification_registrar.h" | 24 #include "content/public/browser/notification_registrar.h" |
25 #include "content/public/browser/notification_types.h" | 25 #include "content/public/browser/notification_types.h" |
26 #include "content/public/test/test_browser_thread.h" | 26 #include "content/public/test/test_browser_thread.h" |
27 #include "testing/gtest/include/gtest/gtest.h" | 27 #include "testing/gtest/include/gtest/gtest.h" |
28 | 28 |
29 // This value is used to seed the PRNG at the beginning of a sequence of | 29 // This value is used to seed the PRNG at the beginning of a sequence of |
30 // operations to produce a repeatable sequence. | 30 // operations to produce a repeatable sequence. |
31 #define RANDOM_SEED (0x33F7A7A7) | 31 #define RANDOM_SEED (0x33F7A7A7) |
32 | 32 |
33 using extensions::Extension; | 33 using extensions::Extension; |
| 34 using extensions::PermissionSet; |
34 | 35 |
35 // For ExtensionService interface when it requires a path that is not used. | 36 // For ExtensionService interface when it requires a path that is not used. |
36 FilePath bogus_file_path() { | 37 FilePath bogus_file_path() { |
37 return FilePath(FILE_PATH_LITERAL("//foobar_nonexistent")); | 38 return FilePath(FILE_PATH_LITERAL("//foobar_nonexistent")); |
38 } | 39 } |
39 | 40 |
40 class BackgroundApplicationListModelTest : public ExtensionServiceTestBase { | 41 class BackgroundApplicationListModelTest : public ExtensionServiceTestBase { |
41 public: | 42 public: |
42 BackgroundApplicationListModelTest() {} | 43 BackgroundApplicationListModelTest() {} |
43 virtual ~BackgroundApplicationListModelTest() {} | 44 virtual ~BackgroundApplicationListModelTest() {} |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 | 92 |
92 void AddBackgroundPermission(ExtensionService* service, | 93 void AddBackgroundPermission(ExtensionService* service, |
93 Extension* extension) { | 94 Extension* extension) { |
94 if (BackgroundApplicationListModel::IsBackgroundApp(*extension, | 95 if (BackgroundApplicationListModel::IsBackgroundApp(*extension, |
95 service->profile())) { | 96 service->profile())) { |
96 return; | 97 return; |
97 } | 98 } |
98 | 99 |
99 static scoped_refptr<Extension> temporary = | 100 static scoped_refptr<Extension> temporary = |
100 CreateExtension(GenerateUniqueExtensionName(), true); | 101 CreateExtension(GenerateUniqueExtensionName(), true); |
101 scoped_refptr<const ExtensionPermissionSet> permissions = | 102 scoped_refptr<const PermissionSet> permissions = |
102 temporary->GetActivePermissions(); | 103 temporary->GetActivePermissions(); |
103 extensions::PermissionsUpdater(service->profile()).AddPermissions( | 104 extensions::PermissionsUpdater(service->profile()).AddPermissions( |
104 extension, permissions.get()); | 105 extension, permissions.get()); |
105 } | 106 } |
106 | 107 |
107 void RemoveBackgroundPermission(ExtensionService* service, | 108 void RemoveBackgroundPermission(ExtensionService* service, |
108 Extension* extension) { | 109 Extension* extension) { |
109 if (!BackgroundApplicationListModel::IsBackgroundApp(*extension, | 110 if (!BackgroundApplicationListModel::IsBackgroundApp(*extension, |
110 service->profile())) { | 111 service->profile())) { |
111 return; | 112 return; |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 break; | 353 break; |
353 case 2: | 354 case 2: |
354 TogglePermission(service, &extensions, model.get(), &expected, &count); | 355 TogglePermission(service, &extensions, model.get(), &expected, &count); |
355 break; | 356 break; |
356 default: | 357 default: |
357 NOTREACHED(); | 358 NOTREACHED(); |
358 break; | 359 break; |
359 } | 360 } |
360 } | 361 } |
361 } | 362 } |
OLD | NEW |