OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/extensions/extension_gcm_app_handler.h" | 5 #include "chrome/browser/extensions/extension_gcm_app_handler.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 #include "extensions/browser/extension_system.h" | 46 #include "extensions/browser/extension_system.h" |
47 #include "extensions/browser/uninstall_reason.h" | 47 #include "extensions/browser/uninstall_reason.h" |
48 #include "extensions/common/extension.h" | 48 #include "extensions/common/extension.h" |
49 #include "extensions/common/manifest.h" | 49 #include "extensions/common/manifest.h" |
50 #include "extensions/common/manifest_constants.h" | 50 #include "extensions/common/manifest_constants.h" |
51 #include "extensions/common/permissions/api_permission.h" | 51 #include "extensions/common/permissions/api_permission.h" |
52 #include "extensions/common/permissions/permissions_data.h" | 52 #include "extensions/common/permissions/permissions_data.h" |
53 #include "testing/gtest/include/gtest/gtest.h" | 53 #include "testing/gtest/include/gtest/gtest.h" |
54 | 54 |
55 #if defined(OS_CHROMEOS) | 55 #if defined(OS_CHROMEOS) |
56 #include "chrome/browser/chromeos/login/users/user_manager.h" | 56 #include "chrome/browser/chromeos/login/users/scoped_test_user_manager.h" |
57 #include "chrome/browser/chromeos/settings/cros_settings.h" | 57 #include "chrome/browser/chromeos/settings/cros_settings.h" |
58 #include "chrome/browser/chromeos/settings/device_settings_service.h" | 58 #include "chrome/browser/chromeos/settings/device_settings_service.h" |
59 #endif | 59 #endif |
60 | 60 |
61 namespace extensions { | 61 namespace extensions { |
62 | 62 |
63 namespace { | 63 namespace { |
64 | 64 |
65 const char kTestExtensionName[] = "FooBar"; | 65 const char kTestExtensionName[] = "FooBar"; |
66 const char kTestingUsername[] = "user1@example.com"; | 66 const char kTestingUsername[] = "user1@example.com"; |
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 | 485 |
486 // App handler is removed when the extension is updated to the version that | 486 // App handler is removed when the extension is updated to the version that |
487 // has GCM permission removed. | 487 // has GCM permission removed. |
488 UpdateExtension(extension, "good2.crx"); | 488 UpdateExtension(extension, "good2.crx"); |
489 waiter()->PumpUILoop(); | 489 waiter()->PumpUILoop(); |
490 EXPECT_TRUE(gcm_app_handler()->app_handler_count_drop_to_zero()); | 490 EXPECT_TRUE(gcm_app_handler()->app_handler_count_drop_to_zero()); |
491 EXPECT_FALSE(HasAppHandlers(extension->id())); | 491 EXPECT_FALSE(HasAppHandlers(extension->id())); |
492 } | 492 } |
493 | 493 |
494 } // namespace extensions | 494 } // namespace extensions |
OLD | NEW |