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" |
11 | 11 |
12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
14 #include "base/file_util.h" | 14 #include "base/file_util.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
16 #include "base/message_loop.h" | 16 #include "base/message_loop.h" |
17 #include "base/stl_util.h" | 17 #include "base/stl_util.h" |
18 #include "chrome/browser/extensions/extension_service.h" | 18 #include "chrome/browser/extensions/extension_service.h" |
19 #include "chrome/browser/extensions/extension_service_unittest.h" | 19 #include "chrome/browser/extensions/extension_service_unittest.h" |
20 #include "chrome/browser/extensions/extension_system.h" | 20 #include "chrome/browser/extensions/extension_system.h" |
21 #include "chrome/browser/extensions/permissions_updater.h" | 21 #include "chrome/browser/extensions/permissions_updater.h" |
22 #include "chrome/common/extensions/extension.h" | 22 #include "chrome/common/extensions/extension.h" |
23 #include "chrome/common/extensions/extension_manifest_constants.h" | 23 #include "chrome/common/extensions/extension_manifest_constants.h" |
24 #include "chrome/common/extensions/permissions/api_permission.h" | 24 #include "chrome/common/extensions/permissions/api_permission.h" |
25 #include "chrome/common/extensions/permissions/permission_set.h" | 25 #include "chrome/common/extensions/permissions/permission_set.h" |
26 #include "chrome/test/base/testing_profile.h" | 26 #include "chrome/test/base/testing_profile.h" |
27 #include "content/public/browser/notification_registrar.h" | 27 #include "content/public/browser/notification_registrar.h" |
28 #include "content/public/browser/notification_types.h" | 28 #include "content/public/browser/notification_types.h" |
29 #include "content/public/test/test_browser_thread.h" | |
30 #include "testing/gtest/include/gtest/gtest.h" | 29 #include "testing/gtest/include/gtest/gtest.h" |
31 | 30 |
32 // This value is used to seed the PRNG at the beginning of a sequence of | 31 // This value is used to seed the PRNG at the beginning of a sequence of |
33 // operations to produce a repeatable sequence. | 32 // operations to produce a repeatable sequence. |
34 #define RANDOM_SEED (0x33F7A7A7) | 33 #define RANDOM_SEED (0x33F7A7A7) |
35 | 34 |
36 using extensions::APIPermission; | 35 using extensions::APIPermission; |
37 using extensions::Extension; | 36 using extensions::Extension; |
38 | 37 |
39 // For ExtensionService interface when it requires a path that is not used. | 38 // For ExtensionService interface when it requires a path that is not used. |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 break; | 371 break; |
373 case 2: | 372 case 2: |
374 TogglePermission(service, &extensions, model.get(), &expected, &count); | 373 TogglePermission(service, &extensions, model.get(), &expected, &count); |
375 break; | 374 break; |
376 default: | 375 default: |
377 NOTREACHED(); | 376 NOTREACHED(); |
378 break; | 377 break; |
379 } | 378 } |
380 } | 379 } |
381 } | 380 } |
OLD | NEW |