summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_tab.idl
diff options
context:
space:
mode:
authorhansl@google.com <hansl@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-01 19:48:05 +0000
committerhansl@google.com <hansl@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-01 19:48:05 +0000
commit98fd4c02c025721cc575239f725aaa16040ed7ac (patch)
treede1a8869ec9495b321ec5d9ba4a6d806222a11af /chrome_frame/chrome_tab.idl
parenteab398757fb0e80d67b6b91e6ff55e43258d6cec (diff)
downloadchromium_src-98fd4c02c025721cc575239f725aaa16040ed7ac.zip
chromium_src-98fd4c02c025721cc575239f725aaa16040ed7ac.tar.gz
chromium_src-98fd4c02c025721cc575239f725aaa16040ed7ac.tar.bz2
Adding IChromeFrameInternal as an interface. It is not implemented yet.
Review URL: http://codereview.chromium.org/4102016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64649 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_tab.idl')
-rw-r--r--chrome_frame/chrome_tab.idl12
1 files changed, 11 insertions, 1 deletions
diff --git a/chrome_frame/chrome_tab.idl b/chrome_frame/chrome_tab.idl
index f934673..7120910 100644
--- a/chrome_frame/chrome_tab.idl
+++ b/chrome_frame/chrome_tab.idl
@@ -84,13 +84,23 @@ interface IChromeFrame : IDispatch {
};
[
+ uuid(851bedec-4b2c-4959-abc0-a53403117257)
+]
+// Internal implementation interface. Not intended as an API. May change
+// frequently, don't treat this as frozen.
+interface IChromeFrameInternal : IUnknown {
+ // This method is available only when the control is in privileged mode.
+ HRESULT getSessionId([out, retval] int* session_id);
+};
+
+[
object,
uuid(655A11E0-EF63-4fbe-9DF6-C182D2FCD6DC),
oleautomation,
nonextensible,
hidden,
]
-interface IChromeFramePrivileged: IUnknown {
+interface IChromeFramePrivileged : IUnknown {
// If the host returns false for wants_privileged, the control
// won't enable privileged mode.
HRESULT GetWantsPrivileged([out] boolean *wants_privileged);