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

Unified Diff: chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc

Issue 1755513002: Fix ifdefs around INSTANTIATE_TEST_CASE_P in tab_drag_controller_interactive_uitest.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nested #if chromeos Created 4 years, 10 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/ui/views/tabs/tab_drag_controller_interactive_uitest.cc
diff --git a/chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc b/chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc
index 95124488d210556fb43d7709f036a3211940235b..85648dbc0840a3903ffe0e6e9941a4c15d96a6e0 100644
--- a/chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc
+++ b/chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc
@@ -2255,8 +2255,6 @@ IN_PROC_BROWSER_TEST_P(DetachToBrowserTabDragControllerTestTouch,
ASSERT_TRUE(ReleaseInput2());
}
-#if defined(OS_CHROMEOS)
-
namespace {
void DetachToDockedWindowNextStep(
@@ -2342,9 +2340,7 @@ IN_PROC_BROWSER_TEST_P(DetachToBrowserTabDragControllerTest,
#endif // OS_CHROMEOS
tapted 2016/03/01 08:28:52 This actually balances the #if defined(OS_CHROMEOS
msw 2016/03/01 18:08:32 Acknowledged.
-#endif
-
-#if defined(USE_ASH) && defined(OS_CHROMEOS) // TODO(win_ash,linux_ash)
msw 2016/03/01 18:08:32 You CL desc says "#if ash && !chromeos", but this
tapted 2016/03/01 23:06:45 oops - fixed. (I probably had it right the first t
+#if defined(USE_ASH)
INSTANTIATE_TEST_CASE_P(TabDragging,
msw 2016/03/01 18:08:32 Did you try any of these with just USE_AURA? (it's
tapted 2016/03/01 23:06:45 Yeah.. so like you say this file is in a sorry sta
DetachToBrowserInSeparateDisplayTabDragControllerTest,
::testing::Values("mouse", "touch"));
@@ -2357,7 +2353,7 @@ INSTANTIATE_TEST_CASE_P(TabDragging,
INSTANTIATE_TEST_CASE_P(TabDragging,
DetachToBrowserTabDragControllerTestTouch,
::testing::Values("touch"));
-#elif defined(USE_ASH)
+#else
INSTANTIATE_TEST_CASE_P(TabDragging,
DetachToBrowserTabDragControllerTest,
::testing::Values("mouse"));
« 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