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

Side by Side Diff: content/browser/browser_plugin/browser_plugin_guest.cc

Issue 2717213004: Move SharedBitmapManager implementation out of content/ (Closed)
Patch Set: rebase Created 3 years, 9 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/browser_plugin/browser_plugin_guest.h" 5 #include "content/browser/browser_plugin/browser_plugin_guest.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
(...skipping 17 matching lines...) Expand all
28 #include "content/browser/loader/resource_dispatcher_host_impl.h" 28 #include "content/browser/loader/resource_dispatcher_host_impl.h"
29 #include "content/browser/renderer_host/render_view_host_impl.h" 29 #include "content/browser/renderer_host/render_view_host_impl.h"
30 #include "content/browser/renderer_host/render_widget_host_impl.h" 30 #include "content/browser/renderer_host/render_widget_host_impl.h"
31 #include "content/browser/renderer_host/render_widget_host_view_base.h" 31 #include "content/browser/renderer_host/render_widget_host_view_base.h"
32 #include "content/browser/web_contents/web_contents_impl.h" 32 #include "content/browser/web_contents/web_contents_impl.h"
33 #include "content/browser/web_contents/web_contents_view_guest.h" 33 #include "content/browser/web_contents/web_contents_view_guest.h"
34 #include "content/common/browser_plugin/browser_plugin_constants.h" 34 #include "content/common/browser_plugin/browser_plugin_constants.h"
35 #include "content/common/browser_plugin/browser_plugin_messages.h" 35 #include "content/common/browser_plugin/browser_plugin_messages.h"
36 #include "content/common/content_constants_internal.h" 36 #include "content/common/content_constants_internal.h"
37 #include "content/common/drag_messages.h" 37 #include "content/common/drag_messages.h"
38 #include "content/common/host_shared_bitmap_manager.h"
39 #include "content/common/input_messages.h" 38 #include "content/common/input_messages.h"
40 #include "content/common/site_isolation_policy.h" 39 #include "content/common/site_isolation_policy.h"
41 #include "content/common/text_input_state.h" 40 #include "content/common/text_input_state.h"
42 #include "content/common/view_messages.h" 41 #include "content/common/view_messages.h"
43 #include "content/public/browser/browser_context.h" 42 #include "content/public/browser/browser_context.h"
44 #include "content/public/browser/browser_plugin_guest_manager.h" 43 #include "content/public/browser/browser_plugin_guest_manager.h"
45 #include "content/public/browser/content_browser_client.h" 44 #include "content/public/browser/content_browser_client.h"
46 #include "content/public/browser/guest_host.h" 45 #include "content/public/browser/guest_host.h"
47 #include "content/public/browser/guest_mode.h" 46 #include "content/public/browser/guest_mode.h"
48 #include "content/public/browser/navigation_handle.h" 47 #include "content/public/browser/navigation_handle.h"
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
1065 range, character_bounds); 1064 range, character_bounds);
1066 } 1065 }
1067 #endif 1066 #endif
1068 1067
1069 void BrowserPluginGuest::SetContextMenuPosition(const gfx::Point& position) { 1068 void BrowserPluginGuest::SetContextMenuPosition(const gfx::Point& position) {
1070 if (delegate_) 1069 if (delegate_)
1071 delegate_->SetContextMenuPosition(position); 1070 delegate_->SetContextMenuPosition(position);
1072 } 1071 }
1073 1072
1074 } // namespace content 1073 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698