diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-24 19:03:34 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-24 19:03:34 +0000 |
commit | 7b29d3c7731635b1a9618d9a82c358d83df9f321 (patch) | |
tree | 7f83b1872909af839717e9436778bf1c240673c7 /base/win | |
parent | f68a048415e699e43fd76e4e014a994b4351b1e3 (diff) | |
download | chromium_src-7b29d3c7731635b1a9618d9a82c358d83df9f321.zip chromium_src-7b29d3c7731635b1a9618d9a82c358d83df9f321.tar.gz chromium_src-7b29d3c7731635b1a9618d9a82c358d83df9f321.tar.bz2 |
Add a function pointer typedef for the windows 8 metro dialog box button handler.
BUG=125672
Review URL: https://chromiumcodereview.appspot.com/10818036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148159 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/win')
-rw-r--r-- | base/win/metro.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/base/win/metro.h b/base/win/metro.h index 899e8c4..50a26ba 100644 --- a/base/win/metro.h +++ b/base/win/metro.h @@ -67,6 +67,9 @@ BASE_EXPORT bool IsTouchEnabled(); // This function should ideally be called on the UI thread. BASE_EXPORT bool IsParentalControlActivityLoggingOn(); +// Handler function for the buttons on a metro dialog box +typedef void (*MetroDialogButtonPressedHandler)(); + } // namespace win } // namespace base |