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

Unified Diff: chrome/browser/extensions/api/file_system/file_system_api_unittest.cc

Issue 1739183003: Make extensions::DictionaryBuilder and extensions::ListValue unmovable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/browser/extensions/api/file_system/file_system_api_unittest.cc
diff --git a/chrome/browser/extensions/api/file_system/file_system_api_unittest.cc b/chrome/browser/extensions/api/file_system/file_system_api_unittest.cc
index c4e24d84b4503da033c93bd8471d3a94158594c0..fafd333f126de7b3f05e4978bb0f93ab28421769 100644
--- a/chrome/browser/extensions/api/file_system/file_system_api_unittest.cc
+++ b/chrome/browser/extensions/api/file_system/file_system_api_unittest.cc
@@ -370,7 +370,8 @@ TEST_F(FileSystemApiConsentProviderTest, ForKioskApps) {
test_util::BuildApp(ExtensionBuilder())
.MergeManifest(DictionaryBuilder()
.SetBoolean("kiosk_enabled", true)
- .SetBoolean("kiosk_only", true))
+ .SetBoolean("kiosk_only", true)
+ .Build())
.Build());
user_manager_->AddKioskAppUser(
AccountId::FromUserEmail(auto_launch_kiosk_app->id()));
@@ -399,7 +400,8 @@ TEST_F(FileSystemApiConsentProviderTest, ForKioskApps) {
test_util::BuildApp(ExtensionBuilder())
.MergeManifest(DictionaryBuilder()
.SetBoolean("kiosk_enabled", true)
- .SetBoolean("kiosk_only", true))
+ .SetBoolean("kiosk_only", true)
+ .Build())
.Build());
user_manager_->KioskAppLoggedIn(
AccountId::FromUserEmail(manual_launch_kiosk_app->id()));

Powered by Google App Engine
This is Rietveld 408576698