| Index: chrome/renderer/extensions/chrome_webstore_bindings.h
 | 
| diff --git a/chrome/renderer/extensions/chrome_webstore_bindings.h b/chrome/renderer/extensions/chrome_webstore_bindings.h
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..60429639a94b65a59e37ddb7c75a9f48d2c5276f
 | 
| --- /dev/null
 | 
| +++ b/chrome/renderer/extensions/chrome_webstore_bindings.h
 | 
| @@ -0,0 +1,26 @@
 | 
| +// Copyright (c) 2011 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.
 | 
| +
 | 
| +// The ChromeStoreExtension is a V8 extension that creates an object at
 | 
| +// window.chrome.webstore.  This object allows JavaScript to initiate inline
 | 
| +// installs of apps that are listed in the Chrome Web Store (CWS).
 | 
| +
 | 
| +#ifndef CHROME_RENDERER_EXTENSIONS_CHROME_WEBSTORE_BINDINGS_H_
 | 
| +#define CHROME_RENDERER_EXTENSIONS_CHROME_WEBSTORE_BINDINGS_H_
 | 
| +#pragma once
 | 
| +
 | 
| +namespace v8 {
 | 
| +class Extension;
 | 
| +}
 | 
| +
 | 
| +namespace extensions_v8 {
 | 
| +
 | 
| +class ChromeWebstoreExtension {
 | 
| + public:
 | 
| +  static v8::Extension* Get();
 | 
| +};
 | 
| +
 | 
| +}  // namespace extensions_v8
 | 
| +
 | 
| +#endif  // CHROME_RENDERER_EXTENSIONS_CHROME_WEBSTORE_BINDINGS_H_
 | 
| 
 |