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

Side by Side Diff: content/renderer/pepper/pepper_compositor_host.cc

Issue 2717213004: Move SharedBitmapManager implementation out of content/ (Closed)
Patch Set: rebase Created 3 years, 8 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
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/pepper/pepper_graphics_2d_host.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/renderer/pepper/pepper_compositor_host.h" 5 #include "content/renderer/pepper/pepper_compositor_host.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <limits> 8 #include <limits>
9 #include <utility> 9 #include <utility>
10 10
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/memory/shared_memory.h" 12 #include "base/memory/shared_memory.h"
13 #include "cc/blink/web_layer_impl.h" 13 #include "cc/blink/web_layer_impl.h"
14 #include "cc/layers/layer.h" 14 #include "cc/layers/layer.h"
15 #include "cc/layers/solid_color_layer.h" 15 #include "cc/layers/solid_color_layer.h"
16 #include "cc/layers/texture_layer.h" 16 #include "cc/layers/texture_layer.h"
17 #include "cc/resources/texture_mailbox.h" 17 #include "cc/resources/texture_mailbox.h"
18 #include "cc/trees/layer_tree_host.h" 18 #include "cc/trees/layer_tree_host.h"
19 #include "content/child/child_shared_bitmap_manager.h"
20 #include "content/public/renderer/renderer_ppapi_host.h" 19 #include "content/public/renderer/renderer_ppapi_host.h"
21 #include "content/renderer/pepper/gfx_conversion.h" 20 #include "content/renderer/pepper/gfx_conversion.h"
22 #include "content/renderer/pepper/host_globals.h" 21 #include "content/renderer/pepper/host_globals.h"
23 #include "content/renderer/pepper/pepper_plugin_instance_impl.h" 22 #include "content/renderer/pepper/pepper_plugin_instance_impl.h"
24 #include "content/renderer/pepper/ppb_image_data_impl.h" 23 #include "content/renderer/pepper/ppb_image_data_impl.h"
25 #include "content/renderer/render_thread_impl.h" 24 #include "content/renderer/render_thread_impl.h"
26 #include "ppapi/c/pp_errors.h" 25 #include "ppapi/c/pp_errors.h"
27 #include "ppapi/host/dispatch_host_message.h" 26 #include "ppapi/host/dispatch_host_message.h"
28 #include "ppapi/host/ppapi_host.h" 27 #include "ppapi/host/ppapi_host.h"
29 #include "ppapi/proxy/ppapi_messages.h" 28 #include "ppapi/proxy/ppapi_messages.h"
30 #include "ppapi/thunk/enter.h" 29 #include "ppapi/thunk/enter.h"
31 #include "ppapi/thunk/ppb_image_data_api.h" 30 #include "ppapi/thunk/ppb_image_data_api.h"
31 #include "services/ui/public/cpp/bitmap/child_shared_bitmap_manager.h"
32 #include "third_party/khronos/GLES2/gl2.h" 32 #include "third_party/khronos/GLES2/gl2.h"
33 #include "ui/gfx/geometry/size_conversions.h" 33 #include "ui/gfx/geometry/size_conversions.h"
34 #include "ui/gfx/transform.h" 34 #include "ui/gfx/transform.h"
35 35
36 using ppapi::host::HostMessageContext; 36 using ppapi::host::HostMessageContext;
37 using ppapi::thunk::EnterResourceNoLock; 37 using ppapi::thunk::EnterResourceNoLock;
38 using ppapi::thunk::PPB_ImageData_API; 38 using ppapi::thunk::PPB_ImageData_API;
39 39
40 namespace content { 40 namespace content {
41 41
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 415
416 // If the host is not bound to the instance, return PP_OK immediately. 416 // If the host is not bound to the instance, return PP_OK immediately.
417 if (!bound_instance_) 417 if (!bound_instance_)
418 return PP_OK; 418 return PP_OK;
419 419
420 commit_layers_reply_context_ = context->MakeReplyMessageContext(); 420 commit_layers_reply_context_ = context->MakeReplyMessageContext();
421 return PP_OK_COMPLETIONPENDING; 421 return PP_OK_COMPLETIONPENDING;
422 } 422 }
423 423
424 } // namespace content 424 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/pepper/pepper_graphics_2d_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698