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

Side by Side Diff: content/renderer/render_view_impl.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/render_thread_impl.cc ('k') | content/renderer/renderer_blink_platform_impl.h » ('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 (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/renderer/render_view_impl.h" 5 #include "content/renderer/render_view_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 #include <memory> 9 #include <memory>
10 10
(...skipping 23 matching lines...) Expand all
34 #include "base/strings/utf_string_conversions.h" 34 #include "base/strings/utf_string_conversions.h"
35 #include "base/sys_info.h" 35 #include "base/sys_info.h"
36 #include "base/threading/thread_task_runner_handle.h" 36 #include "base/threading/thread_task_runner_handle.h"
37 #include "base/time/time.h" 37 #include "base/time/time.h"
38 #include "base/trace_event/trace_event.h" 38 #include "base/trace_event/trace_event.h"
39 #include "build/build_config.h" 39 #include "build/build_config.h"
40 #include "cc/base/switches.h" 40 #include "cc/base/switches.h"
41 #include "cc/paint/skia_paint_canvas.h" 41 #include "cc/paint/skia_paint_canvas.h"
42 #include "content/child/appcache/appcache_dispatcher.h" 42 #include "content/child/appcache/appcache_dispatcher.h"
43 #include "content/child/appcache/web_application_cache_host_impl.h" 43 #include "content/child/appcache/web_application_cache_host_impl.h"
44 #include "content/child/child_shared_bitmap_manager.h"
45 #include "content/child/request_extra_data.h" 44 #include "content/child/request_extra_data.h"
46 #include "content/child/v8_value_converter_impl.h" 45 #include "content/child/v8_value_converter_impl.h"
47 #include "content/child/webmessageportchannel_impl.h" 46 #include "content/child/webmessageportchannel_impl.h"
48 #include "content/common/content_constants_internal.h" 47 #include "content/common/content_constants_internal.h"
49 #include "content/common/content_switches_internal.h" 48 #include "content/common/content_switches_internal.h"
50 #include "content/common/dom_storage/dom_storage_types.h" 49 #include "content/common/dom_storage/dom_storage_types.h"
51 #include "content/common/drag_messages.h" 50 #include "content/common/drag_messages.h"
52 #include "content/common/frame_messages.h" 51 #include "content/common/frame_messages.h"
53 #include "content/common/frame_replication_state.h" 52 #include "content/common/frame_replication_state.h"
54 #include "content/common/input_messages.h" 53 #include "content/common/input_messages.h"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 #include "media/base/media_switches.h" 101 #include "media/base/media_switches.h"
103 #include "media/media_features.h" 102 #include "media/media_features.h"
104 #include "media/renderers/audio_renderer_impl.h" 103 #include "media/renderers/audio_renderer_impl.h"
105 #include "media/renderers/gpu_video_accelerator_factories.h" 104 #include "media/renderers/gpu_video_accelerator_factories.h"
106 #include "net/base/data_url.h" 105 #include "net/base/data_url.h"
107 #include "net/base/escape.h" 106 #include "net/base/escape.h"
108 #include "net/base/net_errors.h" 107 #include "net/base/net_errors.h"
109 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" 108 #include "net/base/registry_controlled_domains/registry_controlled_domain.h"
110 #include "net/http/http_util.h" 109 #include "net/http/http_util.h"
111 #include "ppapi/features/features.h" 110 #include "ppapi/features/features.h"
111 #include "services/ui/public/cpp/bitmap/child_shared_bitmap_manager.h"
112 #include "skia/ext/platform_canvas.h" 112 #include "skia/ext/platform_canvas.h"
113 #include "third_party/WebKit/public/platform/FilePathConversion.h" 113 #include "third_party/WebKit/public/platform/FilePathConversion.h"
114 #include "third_party/WebKit/public/platform/URLConversion.h" 114 #include "third_party/WebKit/public/platform/URLConversion.h"
115 #include "third_party/WebKit/public/platform/WebConnectionType.h" 115 #include "third_party/WebKit/public/platform/WebConnectionType.h"
116 #include "third_party/WebKit/public/platform/WebHTTPBody.h" 116 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
117 #include "third_party/WebKit/public/platform/WebImage.h" 117 #include "third_party/WebKit/public/platform/WebImage.h"
118 #include "third_party/WebKit/public/platform/WebInputEvent.h" 118 #include "third_party/WebKit/public/platform/WebInputEvent.h"
119 #include "third_party/WebKit/public/platform/WebInputEventResult.h" 119 #include "third_party/WebKit/public/platform/WebInputEventResult.h"
120 #include "third_party/WebKit/public/platform/WebMessagePortChannel.h" 120 #include "third_party/WebKit/public/platform/WebMessagePortChannel.h"
121 #include "third_party/WebKit/public/platform/WebPoint.h" 121 #include "third_party/WebKit/public/platform/WebPoint.h"
(...skipping 2557 matching lines...) Expand 10 before | Expand all | Expand 10 after
2679 INPUT_EVENT_ACK_STATE_NOT_CONSUMED); 2679 INPUT_EVENT_ACK_STATE_NOT_CONSUMED);
2680 } 2680 }
2681 2681
2682 std::unique_ptr<InputEventAck> ack( 2682 std::unique_ptr<InputEventAck> ack(
2683 new InputEventAck(InputEventAckSource::MAIN_THREAD, input_event->type(), 2683 new InputEventAck(InputEventAckSource::MAIN_THREAD, input_event->type(),
2684 INPUT_EVENT_ACK_STATE_NOT_CONSUMED)); 2684 INPUT_EVENT_ACK_STATE_NOT_CONSUMED));
2685 OnInputEventAck(std::move(ack)); 2685 OnInputEventAck(std::move(ack));
2686 } 2686 }
2687 2687
2688 } // namespace content 2688 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | content/renderer/renderer_blink_platform_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698