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

Side by Side Diff: chrome/renderer/extensions/chrome_webstore_bindings.h

Issue 7621032: Initial inline web store install bindings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // The ChromeStoreExtension is a V8 extension that creates an object
6 // 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.
7 // installs of apps that are listed in the Chrome Web Store (CWS).
8
9 #ifndef CHROME_RENDERER_EXTENSIONS_CHROME_WEBSTORE_BINDINGS_H_
10 #define CHROME_RENDERER_EXTENSIONS_CHROME_WEBSTORE_BINDINGS_H_
11 #pragma once
12
13 namespace v8 {
14 class Extension;
15 }
16
17 namespace extensions_v8 {
18
19 class ChromeWebstoreExtension {
20 public:
21 static v8::Extension* Get();
22 };
23
24 } // namespace extensions_v8
25
26 #endif // CHROME_RENDERER_EXTENSIONS_CHROME_WEBSTORE_BINDINGS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698