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

Unified Diff: chrome/browser/chromeos/policy/device_local_account_browsertest.cc

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 years, 9 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/chromeos/policy/device_local_account_browsertest.cc
diff --git a/chrome/browser/chromeos/policy/device_local_account_browsertest.cc b/chrome/browser/chromeos/policy/device_local_account_browsertest.cc
index 1d48467fc9169d309886df506455703d44540b5c..064ac83b674457dfa7fe3786766f8435389b1046 100644
--- a/chrome/browser/chromeos/policy/device_local_account_browsertest.cc
+++ b/chrome/browser/chromeos/policy/device_local_account_browsertest.cc
@@ -2292,7 +2292,7 @@ IN_PROC_BROWSER_TEST_F(DeviceLocalAccountTest, PolicyForExtensions) {
}
// Verify that the app policy was set.
- base::StringValue expected_value("policy test value one");
+ base::Value expected_value("policy test value one");
EXPECT_TRUE(base::Value::Equals(
&expected_value,
policy_service->GetPolicies(ns).GetValue("string")));
@@ -2317,7 +2317,7 @@ IN_PROC_BROWSER_TEST_F(DeviceLocalAccountTest, PolicyForExtensions) {
}
// Verify that the app policy was updated.
- base::StringValue expected_new_value("policy test value two");
+ base::Value expected_new_value("policy test value two");
EXPECT_TRUE(base::Value::Equals(
&expected_new_value,
policy_service->GetPolicies(ns).GetValue("string")));

Powered by Google App Engine
This is Rietveld 408576698