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

Unified Diff: ppapi/cpp/dev/find_dev.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/c/private/ppp_find_private.h ('k') | ppapi/cpp/dev/find_dev.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/find_dev.h
diff --git a/ppapi/cpp/dev/find_dev.h b/ppapi/cpp/dev/find_dev.h
deleted file mode 100644
index a3170ebaf9b7d75f3ac7bfe78fc925221a8087e0..0000000000000000000000000000000000000000
--- a/ppapi/cpp/dev/find_dev.h
+++ /dev/null
@@ -1,63 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// 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_
-
-#include <string>
-
-#include "ppapi/c/dev/ppp_find_dev.h"
-#include "ppapi/cpp/instance_handle.h"
-
-namespace pp {
-
-class Instance;
-
-// 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
-// registers as the global handler for handling the PPP_Find interface that the
-// 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) {
-// }
-// ...
-// };
-//
-// or by composition:
-// class MyFinder : public pp::Find {
-// ...
-// };
-//
-// class MyInstance : public pp::Instance {
-// MyInstance() : finder_(this) {
-// }
-//
-// MyFinder finder_;
-// };
-class Find_Dev {
- public:
- // The instance parameter must outlive this class.
- Find_Dev(Instance* instance);
- virtual ~Find_Dev();
-
- // PPP_Find_Dev 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.
- void SetPluginToHandleFindRequests();
- void NumberOfFindResultsChanged(int32_t total, bool final_result);
- void SelectedFindResultChanged(int32_t index);
-
- private:
- InstanceHandle associated_instance_;
-};
-
-} // namespace pp
-
-#endif // PPAPI_CPP_DEV_FIND_DEV_H_
« no previous file with comments | « ppapi/c/private/ppp_find_private.h ('k') | ppapi/cpp/dev/find_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698