diff options
Diffstat (limited to 'chrome_frame/utils.h')
-rw-r--r-- | chrome_frame/utils.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome_frame/utils.h b/chrome_frame/utils.h index 6209248..ace15ae 100644 --- a/chrome_frame/utils.h +++ b/chrome_frame/utils.h @@ -9,6 +9,7 @@ #include <string> #include <shdeprecated.h> #include <urlmon.h> +#include <wininet.h> #include "base/basictypes.h" #include "base/histogram.h" @@ -386,4 +387,11 @@ extern Lock g_ChromeFrameHistogramLock; UMA_HISTOGRAM_TIMES(name, sample); \ } +// Fired when we want to notify IE about privacy changes. +#define WM_FIRE_PRIVACY_CHANGE_NOTIFICATION (WM_APP + 1) + +// Maps the InternetCookieState enum to the corresponding CookieAction values +// used for IE privacy stuff. +int32 MapCookieStateToCookieAction(InternetCookieState cookie_state); + #endif // CHROME_FRAME_UTILS_H_ |