Chromium Code Reviews| 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..978cb762fc2a8176f384a16abaac646db4f63473 |
| --- /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 |
|
Aaron Boodman
2011/08/17 04:53:03
"at" fits on the previous line.
Mihai Parparita -not on Chrome
2011/08/17 23:00:16
Done.
|
| +// 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_ |