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

Unified Diff: chrome/browser/media/router/media_route_unittest.cc

Issue 2112673002: Removing references to Off the Record from MediaRouter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More refactoring on rebased code Created 4 years, 5 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 | « chrome/browser/media/router/media_route.cc ('k') | chrome/browser/media/router/media_router.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/router/media_route_unittest.cc
diff --git a/chrome/browser/media/router/media_route_unittest.cc b/chrome/browser/media/router/media_route_unittest.cc
index 7f5ba830e75c5630ec5550a9bd5dfac21186616e..a1f9ae83c6e9e45ef9af73c20cca75fb6c5b43a5 100644
--- a/chrome/browser/media/router/media_route_unittest.cc
+++ b/chrome/browser/media/router/media_route_unittest.cc
@@ -41,10 +41,10 @@ TEST(MediaRouteTest, Equals) {
"Description", false, "", false);
EXPECT_FALSE(route1.Equals(route5));
- // Same as route1 with different off_the_record.
+ // Same as route1 with different incognito.
MediaRoute route6(kRouteId1, MediaSourceForCastApp("DialApp"), "sinkId",
"Description", true, "", false);
- route6.set_off_the_record(true);
+ route6.set_incognito(true);
EXPECT_TRUE(route1.Equals(route6));
}
« no previous file with comments | « chrome/browser/media/router/media_route.cc ('k') | chrome/browser/media/router/media_router.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698