summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/extensions/extension_custom_bindings.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/renderer/extensions/extension_custom_bindings.h')
-rw-r--r--chrome/renderer/extensions/extension_custom_bindings.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/chrome/renderer/extensions/extension_custom_bindings.h b/chrome/renderer/extensions/extension_custom_bindings.h
deleted file mode 100644
index 9889d35..0000000
--- a/chrome/renderer/extensions/extension_custom_bindings.h
+++ /dev/null
@@ -1,25 +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_EXTENSIONS_EXTENSION_CUSTOM_BINDINGS_H_
-#define CHROME_RENDERER_EXTENSIONS_EXTENSION_CUSTOM_BINDINGS_H_
-
-#include "chrome/renderer/extensions/chrome_v8_extension.h"
-
-namespace extensions {
-class Dispatcher;
-
-// Implements custom bindings for the extension API.
-class ExtensionCustomBindings : public ChromeV8Extension {
- public:
- explicit ExtensionCustomBindings(Dispatcher* dispatcher,
- ChromeV8Context* context);
-
- private:
- void GetExtensionViews(const v8::FunctionCallbackInfo<v8::Value>& args);
-};
-
-} // namespace extensions
-
-#endif // CHROME_RENDERER_EXTENSIONS_EXTENSION_CUSTOM_BINDINGS_H_