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

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

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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/renderer/pepper/host_dispatcher_wrapper.h" 5 #include "content/renderer/pepper/host_dispatcher_wrapper.h"
6 6
7 #include "build/build_config.h"
7 #include "content/common/frame_messages.h" 8 #include "content/common/frame_messages.h"
8 #include "content/public/common/origin_util.h" 9 #include "content/public/common/origin_util.h"
9 #include "content/renderer/pepper/pepper_hung_plugin_filter.h" 10 #include "content/renderer/pepper/pepper_hung_plugin_filter.h"
10 #include "content/renderer/pepper/pepper_plugin_instance_impl.h" 11 #include "content/renderer/pepper/pepper_plugin_instance_impl.h"
11 #include "content/renderer/pepper/pepper_proxy_channel_delegate_impl.h" 12 #include "content/renderer/pepper/pepper_proxy_channel_delegate_impl.h"
12 #include "content/renderer/pepper/plugin_module.h" 13 #include "content/renderer/pepper/plugin_module.h"
13 #include "content/renderer/pepper/renderer_ppapi_host_impl.h" 14 #include "content/renderer/pepper/renderer_ppapi_host_impl.h"
14 #include "content/renderer/pepper/renderer_restrict_dispatch_group.h" 15 #include "content/renderer/pepper/renderer_restrict_dispatch_group.h"
15 #include "content/renderer/render_frame_impl.h" 16 #include "content/renderer/render_frame_impl.h"
16 #include "third_party/WebKit/public/web/WebDocument.h" 17 #include "third_party/WebKit/public/web/WebDocument.h"
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 if (host) { 116 if (host) {
116 RenderFrame* render_frame = host->GetRenderFrameForInstance(instance); 117 RenderFrame* render_frame = host->GetRenderFrameForInstance(instance);
117 if (render_frame) { 118 if (render_frame) {
118 render_frame->Send(new FrameHostMsg_DidDeleteOutOfProcessPepperInstance( 119 render_frame->Send(new FrameHostMsg_DidDeleteOutOfProcessPepperInstance(
119 plugin_child_id_, instance, is_external_)); 120 plugin_child_id_, instance, is_external_));
120 } 121 }
121 } 122 }
122 } 123 }
123 124
124 } // namespace content 125 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/host_array_buffer_var.cc ('k') | content/renderer/pepper/host_globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698