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

Unified Diff: chrome/renderer/native_handler.h

Issue 10879107: Move ModuleSystem and NativeHandler to extensions/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « chrome/renderer/module_system_unittest.cc ('k') | chrome/renderer/native_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/native_handler.h
diff --git a/chrome/renderer/native_handler.h b/chrome/renderer/native_handler.h
deleted file mode 100644
index d328d21e46a653ee1bdd4cb81ac5cfa74f55ab35..0000000000000000000000000000000000000000
--- a/chrome/renderer/native_handler.h
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright (c) 2012 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 CHROME_RENDERER_NATIVE_HANDLER_H_
-#define CHROME_RENDERER_NATIVE_HANDLER_H_
-
-#include "base/bind.h"
-#include "base/memory/linked_ptr.h"
-#include "v8/include/v8.h"
-
-#include <string>
-#include <vector>
-
-// A NativeHandler is a factory for JS objects with functions on them that map
-// to native C++ functions. Subclasses should call RouteFunction() in their
-// constructor to define functions on the created JS objects.
-//
-// NativeHandlers are intended to be used with a ModuleSystem. The ModuleSystem
-// will assume ownership of the NativeHandler, and as a ModuleSystem is tied to
-// a single v8::Context, this implies that NativeHandlers will also be tied to
-// a single v8::context.
-// TODO(koz): Rename this to NativeJavaScriptModule.
-class NativeHandler {
- public:
- explicit NativeHandler();
- virtual ~NativeHandler();
-
- // Create an object with bindings to the native functions defined through
- // RouteFunction().
- virtual v8::Handle<v8::Object> NewInstance();
-
- protected:
- typedef v8::Handle<v8::Value> (*HandlerFunc)(const v8::Arguments&);
- typedef base::Callback<v8::Handle<v8::Value>(const v8::Arguments&)>
- HandlerFunction;
-
- // Installs a new 'route' from |name| to |handler_function|. This means that
- // NewInstance()s of this NativeHandler will have a property |name| which
- // will be handled by |handler_function|.
- void RouteFunction(const std::string& name,
- const HandlerFunction& handler_function);
-
- void RouteStaticFunction(const std::string& name,
- const HandlerFunc handler_func);
-
- private:
- static v8::Handle<v8::Value> Router(const v8::Arguments& args);
-
- std::vector<linked_ptr<HandlerFunction> > handler_functions_;
- v8::Persistent<v8::ObjectTemplate> object_template_;
-
- DISALLOW_COPY_AND_ASSIGN(NativeHandler);
-};
-
-#endif // CHROME_RENDERER_NATIVE_HANDLER_H_
« no previous file with comments | « chrome/renderer/module_system_unittest.cc ('k') | chrome/renderer/native_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698