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

Unified Diff: chrome/browser/storage/durable_storage_browsertest.cc

Issue 1301033004: DurableStorage: Fix compile failure on ChromeOS tryservers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/storage/durable_storage_browsertest.cc
diff --git a/chrome/browser/storage/durable_storage_browsertest.cc b/chrome/browser/storage/durable_storage_browsertest.cc
index 225bdbe36bd2a488356820b4edad45a9dd6f8e3f..19be788f83a129d9dff16cbcb0f392508f015bbe 100644
--- a/chrome/browser/storage/durable_storage_browsertest.cc
+++ b/chrome/browser/storage/durable_storage_browsertest.cc
@@ -58,7 +58,7 @@ IN_PROC_BROWSER_TEST_F(DurableStorageBrowserTest, DenyString) {
bool default_box_is_persistent;
EXPECT_TRUE(content::ExecuteScriptAndExtractBool(
GetRenderFrameHost(), "requestPermission()", &default_box_is_persistent));
- EXPECT_EQ(false, default_box_is_persistent);
+ EXPECT_FALSE(default_box_is_persistent);
std::string permission_string;
EXPECT_TRUE(content::ExecuteScriptAndExtractString(
GetRenderFrameHost(), "checkPermission()", &permission_string));
@@ -80,7 +80,7 @@ IN_PROC_BROWSER_TEST_F(DurableStorageBrowserTest, FirstTabSeesResult) {
bool default_box_is_persistent = false;
EXPECT_TRUE(content::ExecuteScriptAndExtractBool(
GetRenderFrameHost(), "requestPermission()", &default_box_is_persistent));
- EXPECT_EQ(true, default_box_is_persistent);
+ EXPECT_TRUE(default_box_is_persistent);
browser()->tab_strip_model()->ActivateTabAt(0, false);
EXPECT_TRUE(content::ExecuteScriptAndExtractString(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698