diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-02 00:43:16 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-02 00:43:16 +0000 |
commit | 6d660befee69a131370ecc0b422fd2861ef36ec4 (patch) | |
tree | e4252a19d76d0465992b718700c14a87830a40dd /base | |
parent | c2761a5103489bd28d1bb63504975e9ba7374a9a (diff) | |
download | chromium_src-6d660befee69a131370ecc0b422fd2861ef36ec4.zip chromium_src-6d660befee69a131370ecc0b422fd2861ef36ec4.tar.gz chromium_src-6d660befee69a131370ecc0b422fd2861ef36ec4.tar.bz2 |
Adding a structure CurrentTabInfo to base\win\metro which would be used to share
information about the current tab with the metro driver.
BUG=125673
R=cpu
Review URL: https://chromiumcodereview.appspot.com/10290004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134836 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/win/metro.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/base/win/metro.h b/base/win/metro.h index 371fc10..52f494b 100644 --- a/base/win/metro.h +++ b/base/win/metro.h @@ -34,6 +34,12 @@ enum MetroPreviousExecutionState { LASTEXECUTIONSTATE, }; +// Contains information about the currently displayed tab in metro mode. +struct CurrentTabInfo { + wchar_t* title; + wchar_t* url; +}; + // Returns the handle to the metro dll loaded in the process. A NULL return // indicates that the metro dll was not loaded in the process. BASE_EXPORT HMODULE GetMetroModule(); |