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

Side by Side Diff: ppapi/cpp/dev/selection_dev.h

Issue 9481015: Make the PPP wrappers take an Instance*. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: USELESS PATCH DESCRIPTION Created 8 years, 9 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/cpp/dev/printing_dev.cc ('k') | ppapi/cpp/dev/selection_dev.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #ifndef PPAPI_CPP_DEV_SELECTION_DEV_H_ 5 #ifndef PPAPI_CPP_DEV_SELECTION_DEV_H_
6 #define PPAPI_CPP_DEV_SELECTION_DEV_H_ 6 #define PPAPI_CPP_DEV_SELECTION_DEV_H_
7 7
8 #include "ppapi/c/dev/ppp_selection_dev.h" 8 #include "ppapi/c/dev/ppp_selection_dev.h"
9 #include "ppapi/cpp/instance_handle.h" 9 #include "ppapi/cpp/instance_handle.h"
10 10
(...skipping 18 matching lines...) Expand all
29 // }; 29 // };
30 // 30 //
31 // class MyInstance : public pp::Instance { 31 // class MyInstance : public pp::Instance {
32 // MyInstance() : selection_(this) { 32 // MyInstance() : selection_(this) {
33 // } 33 // }
34 // 34 //
35 // MySelection selection_; 35 // MySelection selection_;
36 // }; 36 // };
37 class Selection_Dev { 37 class Selection_Dev {
38 public: 38 public:
39 explicit Selection_Dev(const InstanceHandle& instance); 39 explicit Selection_Dev(Instance* instance);
40 virtual ~Selection_Dev(); 40 virtual ~Selection_Dev();
41 41
42 // PPP_Selection_Dev functions exposed as virtual functions for you to 42 // PPP_Selection_Dev functions exposed as virtual functions for you to
43 // override. 43 // override.
44 virtual Var GetSelectedText(bool html) = 0; 44 virtual Var GetSelectedText(bool html) = 0;
45 45
46 private: 46 private:
47 InstanceHandle associated_instance_; 47 InstanceHandle associated_instance_;
48 }; 48 };
49 49
50 } // namespace pp 50 } // namespace pp
51 51
52 #endif // PPAPI_CPP_DEV_SELECTION_DEV_H_ 52 #endif // PPAPI_CPP_DEV_SELECTION_DEV_H_
OLDNEW
« no previous file with comments | « ppapi/cpp/dev/printing_dev.cc ('k') | ppapi/cpp/dev/selection_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698