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

Unified Diff: ppapi/cpp/private/find_private.h

Issue 195893044: Add a PPB_Find_Private function to set the tickmarks on the page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/c/private/ppb_find_private.h ('k') | ppapi/cpp/private/find_private.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/private/find_private.h
diff --git a/ppapi/cpp/private/find_private.h b/ppapi/cpp/private/find_private.h
index 80ecb982054859fea2eea4fe0a6df63f8acd3ce7..268033b6218f4772da2ab9191ed5719da888b697 100644
--- a/ppapi/cpp/private/find_private.h
+++ b/ppapi/cpp/private/find_private.h
@@ -6,6 +6,7 @@
#define PPAPI_CPP_PRIVATE_FIND_PRIVATE_H_
#include <string>
+#include <vector>
#include "ppapi/c/private/ppp_find_private.h"
#include "ppapi/cpp/instance_handle.h"
@@ -13,6 +14,7 @@
namespace pp {
class Instance;
+class Rect;
// This class allows you to associate the PPP_Find and PPB_Find C-based
// interfaces with an object. It associates itself with the given instance, and
@@ -53,6 +55,7 @@ class Find_Private {
void SetPluginToHandleFindRequests();
void NumberOfFindResultsChanged(int32_t total, bool final_result);
void SelectedFindResultChanged(int32_t index);
+ void SetTickmarks(const std::vector<pp::Rect>& tickmarks);
private:
InstanceHandle associated_instance_;
« no previous file with comments | « ppapi/c/private/ppb_find_private.h ('k') | ppapi/cpp/private/find_private.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698