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

Unified Diff: chrome/browser/extensions/extension_tabs_module.h

Issue 62178: Flesh out more extensions tab api (added removeTab, updateTab) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_tabs_module.h
===================================================================
--- chrome/browser/extensions/extension_tabs_module.h (revision 13446)
+++ chrome/browser/extensions/extension_tabs_module.h (working copy)
@@ -13,5 +13,14 @@
class CreateTabFunction : public SyncExtensionFunction {
virtual bool RunImpl();
};
+class GetTabFunction : public SyncExtensionFunction {
+ virtual bool RunImpl();
+};
+class UpdateTabFunction : public SyncExtensionFunction {
+ virtual bool RunImpl();
+};
+class RemoveTabFunction : public SyncExtensionFunction {
+ virtual bool RunImpl();
+};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TABS_MODULE_H__
« no previous file with comments | « chrome/browser/extensions/extension_function_dispatcher.cc ('k') | chrome/browser/extensions/extension_tabs_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698