diff options
author | mad@google.com <mad@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-30 22:23:19 +0000 |
---|---|---|
committer | mad@google.com <mad@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-30 22:23:19 +0000 |
commit | 19d94938db10c7ac39df17777163b39fbfea3ca3 (patch) | |
tree | d8da09e2b3abf2ec737144be11116b43a7ffecb5 /ceee/ie | |
parent | 28876a7113e313be07102bd26bf0ef693b84c9c9 (diff) | |
download | chromium_src-19d94938db10c7ac39df17777163b39fbfea3ca3.zip chromium_src-19d94938db10c7ac39df17777163b39fbfea3ca3.tar.gz chromium_src-19d94938db10c7ac39df17777163b39fbfea3ca3.tar.bz2 |
Build break fix, missing a file from previous commit...
TBR=hansl@chromium.org
BUG=None
TEST=None
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67770 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ceee/ie')
-rw-r--r-- | ceee/ie/broker/tab_api_module.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ceee/ie/broker/tab_api_module.h b/ceee/ie/broker/tab_api_module.h index b40f7f8..560a2b3 100644 --- a/ceee/ie/broker/tab_api_module.h +++ b/ceee/ie/broker/tab_api_module.h @@ -47,7 +47,16 @@ class TabApiResult : public common_api::CommonApiResult { // to the frame window that is contained in the given input_dict or the // grand parent of the tab window found in the input_dict and returned in // tab_window. - static bool IsTabFromSameOrUnspecifiedFrameWindow( + // @param input_dict The input dictionary where the window IDs can be fetched. + // @param saved_window_value The frame window value to compare to the one + // deduced from the content of @p input_dict. + // @param tab_window Where to return the tab handle. Can be NULL. + // @param dispatcher A pointer to the dispatcher to be used. + // + // @rvalue S_OK if the tab is from the same frame. + // @rvalue S_FALSE if the tab is NOT from the same frame. + // @rvalue E_UNEXPECTED if something wrong happened. + static HRESULT IsTabFromSameOrUnspecifiedFrameWindow( const DictionaryValue& input_dict, const Value* saved_window_value, HWND* tab_window, |