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

Unified Diff: chrome/browser/extensions/api/browser/browser_api.h

Issue 245933002: Initial implementation of chrome.browser.openTab. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing. Created 6 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
« no previous file with comments | « no previous file | chrome/browser/extensions/api/browser/browser_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/browser/browser_api.h
diff --git a/chrome/browser/extensions/api/browser/browser_api.h b/chrome/browser/extensions/api/browser/browser_api.h
new file mode 100644
index 0000000000000000000000000000000000000000..5707857d62527dc65a48131bfb30ca4a437ec11b
--- /dev/null
+++ b/chrome/browser/extensions/api/browser/browser_api.h
@@ -0,0 +1,27 @@
+// Copyright 2014 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 CHROME_BROWSER_EXTENSIONS_API_BROWSER_BROWSER_API_H_
+#define CHROME_BROWSER_EXTENSIONS_API_BROWSER_BROWSER_API_H_
+
+#include "chrome/browser/extensions/chrome_extension_function.h"
+#include "chrome/common/extensions/api/browser.h"
+
+namespace extensions {
+namespace api {
+
+class BrowserOpenTabFunction : public ChromeSyncExtensionFunction {
+ public:
+ DECLARE_EXTENSION_FUNCTION("browser.openTab", BROWSER_OPENTAB)
+
+ protected:
+ virtual ~BrowserOpenTabFunction();
+
+ virtual bool RunSync() OVERRIDE;
+};
+
+} // namespace api
+} // namespace extensions
+
+#endif // CHROME_BROWSER_EXTENSIONS_API_BROWSER_BROWSER_API_H_
« no previous file with comments | « no previous file | chrome/browser/extensions/api/browser/browser_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698