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

Side by Side Diff: ppapi/shared_impl/ppp_instance_combined.cc

Issue 7452002: Remove HandleInputEvent from PPP_Instance and freeze to 1.0. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: copyright Created 9 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/shared_impl/ppp_instance_combined.h ('k') | webkit/plugins/ppapi/event_conversion.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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "ppapi/shared_impl/ppp_instance_combined.h" 5 #include "ppapi/shared_impl/ppp_instance_combined.h"
6 6
7 namespace ppapi { 7 namespace ppapi {
8 8
9 PPP_Instance_Combined::PPP_Instance_Combined( 9 PPP_Instance_Combined::PPP_Instance_Combined(
10 const PPP_Instance_1_0& instance_if)
11 : PPP_Instance_1_0(instance_if),
12 HandleInputEvent_0_5(NULL) {
13 }
14
15 PPP_Instance_Combined::PPP_Instance_Combined(
10 const PPP_Instance_0_5& instance_if) 16 const PPP_Instance_0_5& instance_if)
11 : PPP_Instance_0_5(instance_if) { 17 : PPP_Instance_1_0(),
18 HandleInputEvent_0_5(instance_if.HandleInputEvent) {
19 DidCreate = instance_if.DidCreate;
20 DidDestroy = instance_if.DidDestroy;
21 DidChangeView = instance_if.DidChangeView;
22 DidChangeFocus = instance_if.DidChangeFocus;
23 HandleDocumentLoad = instance_if.HandleDocumentLoad;
12 } 24 }
13 25
14 } // namespace ppapi 26 } // namespace ppapi
15 27
OLDNEW
« no previous file with comments | « ppapi/shared_impl/ppp_instance_combined.h ('k') | webkit/plugins/ppapi/event_conversion.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698