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

Side by Side Diff: headless/lib/headless_devtools_client_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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 <memory> 5 #include <memory>
6 6
7 #include "base/json/json_reader.h" 7 #include "base/json/json_reader.h"
8 #include "base/message_loop/message_loop.h"
8 #include "base/run_loop.h" 9 #include "base/run_loop.h"
9 #include "content/public/browser/render_widget_host_view.h" 10 #include "content/public/browser/render_widget_host_view.h"
10 #include "content/public/browser/web_contents.h" 11 #include "content/public/browser/web_contents.h"
11 #include "content/public/common/url_constants.h" 12 #include "content/public/common/url_constants.h"
12 #include "content/public/test/browser_test.h" 13 #include "content/public/test/browser_test.h"
13 #include "headless/lib/browser/headless_web_contents_impl.h" 14 #include "headless/lib/browser/headless_web_contents_impl.h"
14 #include "headless/public/devtools/domains/dom.h" 15 #include "headless/public/devtools/domains/dom.h"
15 #include "headless/public/devtools/domains/emulation.h" 16 #include "headless/public/devtools/domains/emulation.h"
16 #include "headless/public/devtools/domains/inspector.h" 17 #include "headless/public/devtools/domains/inspector.h"
17 #include "headless/public/devtools/domains/network.h" 18 #include "headless/public/devtools/domains/network.h"
(...skipping 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after
1035 } 1036 }
1036 1037
1037 private: 1038 private:
1038 bool dev_tools_client_attached_ = false; 1039 bool dev_tools_client_attached_ = false;
1039 bool dev_tools_client_detached_ = false; 1040 bool dev_tools_client_detached_ = false;
1040 }; 1041 };
1041 1042
1042 HEADLESS_ASYNC_DEVTOOLED_TEST_F(DevToolsAttachAndDetachNotifications); 1043 HEADLESS_ASYNC_DEVTOOLED_TEST_F(DevToolsAttachAndDetachNotifications);
1043 1044
1044 } // namespace headless 1045 } // namespace headless
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698