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

Unified Diff: components/arc/intent_helper/page_transition_util_unittest.cc

Issue 2556903002: Allow an external URL with FROM_API qualifier to be forwarded to ARC (Closed)
Patch Set: Created 4 years 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 | « components/arc/intent_helper/page_transition_util.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/intent_helper/page_transition_util_unittest.cc
diff --git a/components/arc/intent_helper/page_transition_util_unittest.cc b/components/arc/intent_helper/page_transition_util_unittest.cc
index dc49307f999735ee4067d2c552eca9036562d748..79f1e785d448bb86588d728f4cae1cb22a1e3013 100644
--- a/components/arc/intent_helper/page_transition_util_unittest.cc
+++ b/components/arc/intent_helper/page_transition_util_unittest.cc
@@ -174,14 +174,14 @@ TEST(PageTransitionUtilTest, TestMaskOutPageTransition) {
ui::PageTransition page_transition = ui::PageTransitionFromInt(
ui::PAGE_TRANSITION_LINK | ui::PAGE_TRANSITION_CLIENT_REDIRECT);
EXPECT_EQ(ui::PAGE_TRANSITION_LINK,
- MaskOutPageTransitionForTesting(
- page_transition, ui::PAGE_TRANSITION_CLIENT_REDIRECT));
+ MaskOutPageTransition(page_transition,
+ ui::PAGE_TRANSITION_CLIENT_REDIRECT));
page_transition = ui::PageTransitionFromInt(
ui::PAGE_TRANSITION_LINK | ui::PAGE_TRANSITION_SERVER_REDIRECT);
EXPECT_EQ(ui::PAGE_TRANSITION_LINK,
- MaskOutPageTransitionForTesting(
- page_transition, ui::PAGE_TRANSITION_SERVER_REDIRECT));
+ MaskOutPageTransition(page_transition,
+ ui::PAGE_TRANSITION_SERVER_REDIRECT));
}
// Test mixed variants between |allow_form_submit| and |allow_client_redirect|.
« no previous file with comments | « components/arc/intent_helper/page_transition_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698