Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / sync / js / js_backend.h
index e39600a..a0ef317 100644 (file)
@@ -13,9 +13,7 @@
 
 namespace syncer {
 
-class JsArgList;
 class JsEventHandler;
-class JsReplyHandler;
 template <typename T> class WeakHandle;
 
 // Interface representing the backend of chrome://sync-internals.  A
@@ -27,12 +25,6 @@ class SYNC_EXPORT_PRIVATE JsBackend {
   virtual void SetJsEventHandler(
       const WeakHandle<JsEventHandler>& event_handler) = 0;
 
-  // Processes the given message and replies via the given handler, if
-  // initialized.
-  virtual void ProcessJsMessage(
-      const std::string& name, const JsArgList& args,
-      const WeakHandle<JsReplyHandler>& reply_handler) = 0;
-
  protected:
   virtual ~JsBackend() {}
 };