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

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

Issue 197623005: Rename PPB_Find_Dev to PPB_Find_Private (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/cpp/dev/printing_dev.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/dev/find_dev.h b/ppapi/cpp/private/find_private.h
similarity index 71%
rename from ppapi/cpp/dev/find_dev.h
rename to ppapi/cpp/private/find_private.h
index a3170ebaf9b7d75f3ac7bfe78fc925221a8087e0..5a9cbf5871c42872df25bb133a4810bf05b29625 100644
--- a/ppapi/cpp/dev/find_dev.h
+++ b/ppapi/cpp/private/find_private.h
@@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef PPAPI_CPP_DEV_FIND_DEV_H_
-#define PPAPI_CPP_DEV_FIND_DEV_H_
+#ifndef PPAPI_CPP_PRIVATE_FIND_PRIVATE_H_
+#define PPAPI_CPP_PRIVATE_FIND_PRIVATE_H_
#include <string>
-#include "ppapi/c/dev/ppp_find_dev.h"
+#include "ppapi/c/private/ppp_find_private.h"
#include "ppapi/cpp/instance_handle.h"
namespace pp {
@@ -20,8 +20,8 @@ class Instance;
// browser calls.
//
// You would typically use this either via inheritance on your instance:
-// class MyInstance : public pp::Instance, public pp::Find_Dev {
-// class MyInstance() : pp::Find_Dev(this) {
+// class MyInstance : public pp::Instance, public pp::Find_Private {
+// class MyInstance() : pp::Find_Private(this) {
// }
// ...
// };
@@ -37,19 +37,19 @@ class Instance;
//
// MyFinder finder_;
// };
-class Find_Dev {
+class Find_Private {
public:
// The instance parameter must outlive this class.
- Find_Dev(Instance* instance);
- virtual ~Find_Dev();
+ Find_Private(Instance* instance);
+ virtual ~Find_Private();
- // PPP_Find_Dev functions exposed as virtual functions for you to
+ // PPP_Find_Private functions exposed as virtual functions for you to
// override.
virtual bool StartFind(const std::string& text, bool case_sensitive) = 0;
virtual void SelectFindResult(bool forward) = 0;
virtual void StopFind() = 0;
- // PPB_Find_Dev functions for you to call to report find results.
+ // PPB_Find_Private functions for you to call to report find results.
void SetPluginToHandleFindRequests();
void NumberOfFindResultsChanged(int32_t total, bool final_result);
void SelectedFindResultChanged(int32_t index);
@@ -60,4 +60,4 @@ class Find_Dev {
} // namespace pp
-#endif // PPAPI_CPP_DEV_FIND_DEV_H_
+#endif // PPAPI_CPP_PRIVATE_FIND_PRIVATE_H_
« no previous file with comments | « ppapi/cpp/dev/printing_dev.h ('k') | ppapi/cpp/private/find_private.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698