Chromium Code Reviews| Index: components/arc/intent_helper/page_transition_util.h |
| diff --git a/components/arc/intent_helper/page_transition_util.h b/components/arc/intent_helper/page_transition_util.h |
| index 0aa3995589f98026ba1defbe680f90c3c45ccca3..d2834af8ee2ad6fc35cd420756caa0734252f387 100644 |
| --- a/components/arc/intent_helper/page_transition_util.h |
| +++ b/components/arc/intent_helper/page_transition_util.h |
| @@ -14,9 +14,10 @@ bool ShouldIgnoreNavigation(ui::PageTransition page_transition, |
| bool allow_form_submit, |
| bool allow_client_redirect); |
| -ui::PageTransition MaskOutPageTransitionForTesting( |
| - ui::PageTransition page_transition, |
| - ui::PageTransition mask); |
| +// Removes |mask| bits from |page_transition|. |
| +// TODO(djacobo): Move this to ui/base/page_transition_types.cc. |
|
djacobo
2016/12/01 23:47:23
will do :)
Yusuke Sato
2016/12/02 00:24:17
Thanks!
|
| +ui::PageTransition MaskOutPageTransition(ui::PageTransition page_transition, |
| + ui::PageTransition mask); |
| } // namespace arc |