Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: chrome/common/extensions/manifest_tests/extension_manifests_offline_unittest.cc

Issue 15836003: Update chrome/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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" 5 #include "chrome/common/extensions/extension.h"
6 #include "chrome/common/extensions/extension_manifest_constants.h" 6 #include "chrome/common/extensions/extension_manifest_constants.h"
7 #include "chrome/common/extensions/manifest_handlers/offline_enabled_info.h" 7 #include "chrome/common/extensions/manifest_handlers/offline_enabled_info.h"
8 #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h" 8 #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
11 namespace errors = extension_manifest_errors; 11 namespace errors = extension_manifest_errors;
12 12
13 namespace extensions { 13 namespace extensions {
14 14
15 class ExtensionManifestOfflineEnabledTest : public ExtensionManifestTest { 15 class ExtensionManifestOfflineEnabledTest : public ExtensionManifestTest {
16 }; 16 };
17 17
18 TEST_F(ExtensionManifestOfflineEnabledTest, OfflineEnabled) { 18 TEST_F(ExtensionManifestOfflineEnabledTest, OfflineEnabled) {
19 LoadAndExpectError("offline_enabled_invalid.json", 19 LoadAndExpectError("offline_enabled_invalid.json",
20 errors::kInvalidOfflineEnabled); 20 errors::kInvalidOfflineEnabled);
21 scoped_refptr<Extension> extension_0( 21 scoped_refptr<Extension> extension_0(
22 LoadAndExpectSuccess("offline_enabled_extension.json")); 22 LoadAndExpectSuccess("offline_enabled_extension.json"));
23 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_0)); 23 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_0.get()));
24 scoped_refptr<Extension> extension_1( 24 scoped_refptr<Extension> extension_1(
25 LoadAndExpectSuccess("offline_enabled_packaged_app.json")); 25 LoadAndExpectSuccess("offline_enabled_packaged_app.json"));
26 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_1)); 26 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_1.get()));
27 scoped_refptr<Extension> extension_2( 27 scoped_refptr<Extension> extension_2(
28 LoadAndExpectSuccess("offline_disabled_packaged_app.json")); 28 LoadAndExpectSuccess("offline_disabled_packaged_app.json"));
29 EXPECT_FALSE(OfflineEnabledInfo::IsOfflineEnabled(extension_2)); 29 EXPECT_FALSE(OfflineEnabledInfo::IsOfflineEnabled(extension_2.get()));
30 scoped_refptr<Extension> extension_3( 30 scoped_refptr<Extension> extension_3(
31 LoadAndExpectSuccess("offline_default_packaged_app.json")); 31 LoadAndExpectSuccess("offline_default_packaged_app.json"));
32 EXPECT_FALSE(OfflineEnabledInfo::IsOfflineEnabled(extension_3)); 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)); 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)); 38 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_5.get()));
39 } 39 }
40 40
41 } // namespace extensions 41 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698