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

Side by Side Diff: content/browser/web_contents/web_contents_view_aura.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/browser/web_contents/web_contents_view_aura.h" 5 #include "content/browser/web_contents/web_contents_view_aura.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/files/file_util.h" 12 #include "base/files/file_util.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/memory/ptr_util.h" 14 #include "base/memory/ptr_util.h"
15 #include "base/message_loop/message_loop.h"
15 #include "base/strings/utf_string_conversions.h" 16 #include "base/strings/utf_string_conversions.h"
16 #include "build/build_config.h" 17 #include "build/build_config.h"
17 #include "content/browser/browser_plugin/browser_plugin_guest.h" 18 #include "content/browser/browser_plugin/browser_plugin_guest.h"
18 #include "content/browser/download/drag_download_util.h" 19 #include "content/browser/download/drag_download_util.h"
19 #include "content/browser/frame_host/interstitial_page_impl.h" 20 #include "content/browser/frame_host/interstitial_page_impl.h"
20 #include "content/browser/frame_host/navigation_entry_impl.h" 21 #include "content/browser/frame_host/navigation_entry_impl.h"
21 #include "content/browser/renderer_host/dip_util.h" 22 #include "content/browser/renderer_host/dip_util.h"
22 #include "content/browser/renderer_host/input/touch_selection_controller_client_ aura.h" 23 #include "content/browser/renderer_host/input/touch_selection_controller_client_ aura.h"
23 #include "content/browser/renderer_host/overscroll_controller.h" 24 #include "content/browser/renderer_host/overscroll_controller.h"
24 #include "content/browser/renderer_host/render_view_host_factory.h" 25 #include "content/browser/renderer_host/render_view_host_factory.h"
(...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after
1340 bool allow_multiple_selection) { 1341 bool allow_multiple_selection) {
1341 NOTIMPLEMENTED() << " show " << items.size() << " menu items"; 1342 NOTIMPLEMENTED() << " show " << items.size() << " menu items";
1342 } 1343 }
1343 1344
1344 void WebContentsViewAura::HidePopupMenu() { 1345 void WebContentsViewAura::HidePopupMenu() {
1345 NOTIMPLEMENTED(); 1346 NOTIMPLEMENTED();
1346 } 1347 }
1347 #endif 1348 #endif
1348 1349
1349 } // namespace content 1350 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698