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

Side by Side Diff: webkit/plugins/ppapi/ppb_find_impl.cc

Issue 7105013: Convert more interfaces to the new thunk system. This goes up to and including (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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 | « webkit/plugins/ppapi/ppb_find_impl.h ('k') | webkit/plugins/ppapi/ppb_font_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) 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 "webkit/plugins/ppapi/ppb_find_impl.h" 5 #include "webkit/plugins/ppapi/ppb_find_impl.h"
6 6
7 #include "webkit/plugins/ppapi/plugin_delegate.h" 7 #include "webkit/plugins/ppapi/plugin_delegate.h"
8 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" 8 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h"
9 9
10 using ::ppapi::thunk::PPB_Find_FunctionAPI; 10 using ::ppapi::thunk::PPB_Find_FunctionAPI;
(...skipping 21 matching lines...) Expand all
32 32
33 void PPB_Find_Impl::SelectedFindResultChanged(PP_Instance instance, 33 void PPB_Find_Impl::SelectedFindResultChanged(PP_Instance instance,
34 int32_t index) { 34 int32_t index) {
35 DCHECK_NE(instance_->find_identifier(), -1); 35 DCHECK_NE(instance_->find_identifier(), -1);
36 instance_->delegate()->SelectedFindResultChanged( 36 instance_->delegate()->SelectedFindResultChanged(
37 instance_->find_identifier(), index); 37 instance_->find_identifier(), index);
38 } 38 }
39 39
40 } // namespace ppapi 40 } // namespace ppapi
41 } // namespace webkit 41 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppb_find_impl.h ('k') | webkit/plugins/ppapi/ppb_font_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698