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

Unified Diff: chrome/common/extensions/manifest_tests/extension_manifests_isolatedapp_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, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/manifest_tests/extension_manifests_isolatedapp_unittest.cc
diff --git a/chrome/common/extensions/manifest_tests/extension_manifests_isolatedapp_unittest.cc b/chrome/common/extensions/manifest_tests/extension_manifests_isolatedapp_unittest.cc
index d291558179f8e5426100914107aa53c98dbec222..bdbba821a65e4861261e2958b8cb940a3be1c02b 100644
--- a/chrome/common/extensions/manifest_tests/extension_manifests_isolatedapp_unittest.cc
+++ b/chrome/common/extensions/manifest_tests/extension_manifests_isolatedapp_unittest.cc
@@ -27,7 +27,7 @@ TEST_F(IsolatedAppsManifestTest, IsolatedApps) {
switches::kEnableExperimentalExtensionApis);
scoped_refptr<Extension> extension2(
LoadAndExpectSuccess("isolated_app_valid.json"));
- EXPECT_TRUE(AppIsolationInfo::HasIsolatedStorage(extension2));
+ EXPECT_TRUE(AppIsolationInfo::HasIsolatedStorage(extension2.get()));
}
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698