Commit c7173640 authored by kalman's avatar kalman Committed by Commit bot

Remove reference to OpenTabOptions in chrome.browser.openTab docs.

BUG=358315
R=rpaquay@chromium.org

Review URL: https://codereview.chromium.org/1012953004

Cr-Commit-Position: refs/heads/master@{#320833}
parent 4827d56c
...@@ -16,10 +16,10 @@ namespace browser { ...@@ -16,10 +16,10 @@ namespace browser {
interface Functions { interface Functions {
// Opens a new tab in a browser window associated with the current // Opens a new tab in a browser window associated with the current
// application and Chrome profile. If no browser window for the Chrome // application and Chrome profile. If no browser window for the Chrome
// profile is opened, a new one is opened prior to creating the new tab. The // profile is opened, a new one is opened prior to creating the new tab.
// initial URL of the new tab is specified in |options|. // |options| - Configures how the tab should be opened.
// |options| : The $(ref:OpenTabOptions) for this function. // |callback| - Called when the tab was successfully created, or failed to
// |callback| : Called to indicate success or failure. // be created. If failed, $(ref:runtime.lastError) will be set.
static void openTab(OpenTabOptions options, static void openTab(OpenTabOptions options,
optional Callback callback); optional Callback callback);
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment