| 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 #include "chrome/common/extensions/extension.h" | |
| 6 #include "chrome/common/extensions/manifest_handlers/offline_enabled_info.h" | 5 #include "chrome/common/extensions/manifest_handlers/offline_enabled_info.h" |
| 7 #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h" | 6 #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h" |
| 7 #include "extensions/common/extension.h" |
| 8 #include "extensions/common/manifest_constants.h" | 8 #include "extensions/common/manifest_constants.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 | 10 |
| 11 namespace extensions { | 11 namespace extensions { |
| 12 | 12 |
| 13 namespace errors = manifest_errors; | 13 namespace errors = manifest_errors; |
| 14 | 14 |
| 15 class ExtensionManifestOfflineEnabledTest : public ExtensionManifestTest { | 15 class ExtensionManifestOfflineEnabledTest : public ExtensionManifestTest { |
| 16 }; | 16 }; |
| 17 | 17 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 32 EXPECT_FALSE(OfflineEnabledInfo::IsOfflineEnabled(extension_3.get())); | 32 EXPECT_FALSE(OfflineEnabledInfo::IsOfflineEnabled(extension_3.get())); |
| 33 scoped_refptr<Extension> extension_4( | 33 scoped_refptr<Extension> extension_4( |
| 34 LoadAndExpectSuccess("offline_enabled_hosted_app.json")); | 34 LoadAndExpectSuccess("offline_enabled_hosted_app.json")); |
| 35 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_4.get())); | 35 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_4.get())); |
| 36 scoped_refptr<Extension> extension_5( | 36 scoped_refptr<Extension> extension_5( |
| 37 LoadAndExpectSuccess("offline_default_platform_app.json")); | 37 LoadAndExpectSuccess("offline_default_platform_app.json")); |
| 38 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_5.get())); | 38 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_5.get())); |
| 39 } | 39 } |
| 40 | 40 |
| 41 } // namespace extensions | 41 } // namespace extensions |
| OLD | NEW |