| Index: chrome_frame/urlmon_url_request_private.h
|
| ===================================================================
|
| --- chrome_frame/urlmon_url_request_private.h (revision 42240)
|
| +++ chrome_frame/urlmon_url_request_private.h (working copy)
|
| @@ -40,6 +40,12 @@
|
| parent_window_ = parent_window;
|
| }
|
|
|
| + // This function passes information on whether ChromeFrame is running in
|
| + // privileged mode.
|
| + void set_privileged_mode(bool privileged_mode) {
|
| + privileged_mode_ = privileged_mode;
|
| + }
|
| +
|
| protected:
|
| UrlmonUrlRequest();
|
| ~UrlmonUrlRequest();
|
| @@ -302,7 +308,8 @@
|
| PlatformThreadId thread_;
|
| HWND parent_window_;
|
| bool headers_received_;
|
| -
|
| + // Set to true if the ChromeFrame instance is running in privileged mode.
|
| + bool privileged_mode_;
|
| DISALLOW_COPY_AND_ASSIGN(UrlmonUrlRequest);
|
| };
|
|
|
|
|