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

Side by Side Diff: content/child/npapi/webplugin_delegate_impl_android.cc

Issue 1544273002: Switch to standard integer types in content/. (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/child/npapi/webplugin_delegate_impl.h" 5 #include "content/child/npapi/webplugin_delegate_impl.h"
6 6
7 #include "base/basictypes.h" 7 #include <string.h>
8
8 #include "base/logging.h" 9 #include "base/logging.h"
9 #include "content/child/npapi/plugin_instance.h" 10 #include "content/child/npapi/plugin_instance.h"
10 #include "content/child/npapi/webplugin.h" 11 #include "content/child/npapi/webplugin.h"
11 #include "content/common/cursors/webcursor.h" 12 #include "content/common/cursors/webcursor.h"
12 13
13 using blink::WebInputEvent; 14 using blink::WebInputEvent;
14 15
15 namespace content { 16 namespace content {
16 17
17 WebPluginDelegateImpl::WebPluginDelegateImpl( 18 WebPluginDelegateImpl::WebPluginDelegateImpl(
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 bool WebPluginDelegateImpl::PlatformSetPluginHasFocus(bool focused) { 71 bool WebPluginDelegateImpl::PlatformSetPluginHasFocus(bool focused) {
71 return false; 72 return false;
72 } 73 }
73 74
74 bool WebPluginDelegateImpl::PlatformHandleInputEvent( 75 bool WebPluginDelegateImpl::PlatformHandleInputEvent(
75 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) { 76 const WebInputEvent& event, WebCursor::CursorInfo* cursor_info) {
76 return false; 77 return false;
77 } 78 }
78 79
79 } // content 80 } // content
OLDNEW
« no previous file with comments | « content/child/npapi/webplugin_delegate_impl.cc ('k') | content/child/npapi/webplugin_delegate_impl_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698