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

Unified Diff: chrome/renderer/extensions/api_definitions_natives.h

Issue 9918006: Split SchemaGeneratedBindings up into smaller, more targetted native handlers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 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
Index: chrome/renderer/extensions/api_definitions_natives.h
diff --git a/chrome/renderer/extensions/api_definitions_natives.h b/chrome/renderer/extensions/api_definitions_natives.h
new file mode 100644
index 0000000000000000000000000000000000000000..2116593e56629a2161ad1c43e5e3dea081bf1bce
--- /dev/null
+++ b/chrome/renderer/extensions/api_definitions_natives.h
@@ -0,0 +1,26 @@
+// 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_EXTENSIONS_API_DEFINITIONS_NATIVES_H_
+#define CHROME_RENDERER_EXTENSIONS_API_DEFINITIONS_NATIVES_H_
+#pragma once
+
+#include "chrome/renderer/extensions/chrome_v8_extension.h"
+#include "chrome/renderer/extensions/extension_dispatcher.h"
+
+#include "v8/include/v8.h"
+
+namespace extensions {
+
+class ApiDefinitionsNatives : public ChromeV8Extension {
not at google - send to devlin 2012/03/30 03:23:18 docs
koz (OOO until 15th September) 2012/04/03 00:15:27 Done.
+ public:
+ explicit ApiDefinitionsNatives(ExtensionDispatcher* extension_dispatcher);
+
+ private:
+ v8::Handle<v8::Value> GetExtensionAPIDefinition(const v8::Arguments& args);
not at google - send to devlin 2012/03/30 03:23:18 DISALLOW_etc
koz (OOO until 15th September) 2012/04/03 00:15:27 Done.
+};
+
+} // namespace extensions
+
+#endif // CHROME_RENDERER_EXTENSIONS_API_DEFINITIONS_NATIVES_H_

Powered by Google App Engine
This is Rietveld 408576698