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

Side by Side Diff: chrome/browser/devtools/devtools_sanity_interactive_browsertest.cc

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/macros.h" 5 #include "base/macros.h"
6 #include "base/memory/ptr_util.h" 6 #include "base/memory/ptr_util.h"
7 #include "base/message_loop/message_loop.h"
7 #include "base/run_loop.h" 8 #include "base/run_loop.h"
8 #include "build/build_config.h" 9 #include "build/build_config.h"
9 #include "chrome/browser/devtools/chrome_devtools_manager_delegate.h" 10 #include "chrome/browser/devtools/chrome_devtools_manager_delegate.h"
10 #include "chrome/browser/ui/browser_window.h" 11 #include "chrome/browser/ui/browser_window.h"
11 #include "chrome/browser/ui/exclusive_access/exclusive_access_context.h" 12 #include "chrome/browser/ui/exclusive_access/exclusive_access_context.h"
12 #include "chrome/test/base/in_process_browser_test.h" 13 #include "chrome/test/base/in_process_browser_test.h"
13 14
14 #if defined(OS_MACOSX) 15 #if defined(OS_MACOSX)
15 #include "ui/base/test/scoped_fake_nswindow_fullscreen.h" 16 #include "ui/base/test/scoped_fake_nswindow_fullscreen.h"
16 #endif 17 #endif
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 #if defined(OS_MACOSX) 202 #if defined(OS_MACOSX)
202 faker.FinishTransition(); 203 faker.FinishTransition();
203 #endif 204 #endif
204 CheckIsFullscreen(true); 205 CheckIsFullscreen(true);
205 SendCommand("normal"); 206 SendCommand("normal");
206 #if defined(OS_MACOSX) 207 #if defined(OS_MACOSX)
207 faker.FinishTransition(); 208 faker.FinishTransition();
208 #endif 209 #endif
209 CheckIsFullscreen(false); 210 CheckIsFullscreen(false);
210 } 211 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698