| Index: extensions/renderer/context_menus_custom_bindings.h
|
| diff --git a/extensions/renderer/context_menus_custom_bindings.h b/extensions/renderer/context_menus_custom_bindings.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..87725a78aabbf5c0d2871fc16aee6144c63539c1
|
| --- /dev/null
|
| +++ b/extensions/renderer/context_menus_custom_bindings.h
|
| @@ -0,0 +1,21 @@
|
| +// 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 EXTENSIONS_RENDERER_CONTEXT_MENUS_CUSTOM_BINDINGS_H_
|
| +#define EXTENSIONS_RENDERER_CONTEXT_MENUS_CUSTOM_BINDINGS_H_
|
| +
|
| +#include "extensions/renderer/object_backed_native_handler.h"
|
| +
|
| +namespace extensions {
|
| +class ScriptContext;
|
| +
|
| +// Implements custom bindings for the contextMenus API.
|
| +class ContextMenusCustomBindings : public ObjectBackedNativeHandler {
|
| + public:
|
| + ContextMenusCustomBindings(ScriptContext* context);
|
| +};
|
| +
|
| +} // extensions
|
| +
|
| +#endif // EXTENSIONS_RENDERER_CONTEXT_MENUS_CUSTOM_BINDINGS_H_
|
|
|