summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_tab.idl
diff options
context:
space:
mode:
authorjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-21 19:40:21 +0000
committerjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-21 19:40:21 +0000
commita55c1d6e5a42bbf334c61dbc2bacab4683770f49 (patch)
tree9272ab3448e51c22598518b76b36cc1b242c4f29 /chrome_frame/chrome_tab.idl
parent146185df383870a8b4dba30061aa6a1118c58239 (diff)
downloadchromium_src-a55c1d6e5a42bbf334c61dbc2bacab4683770f49.zip
chromium_src-a55c1d6e5a42bbf334c61dbc2bacab4683770f49.tar.gz
chromium_src-a55c1d6e5a42bbf334c61dbc2bacab4683770f49.tar.bz2
Always use flag needed by CEEE. Now that we use the same profile for
CF and CEEE, we need to ensure they both start Chrome with the same flags. Since IChromeFramePrivileged is a private/unfrozen interface, I simply removed the GetChromeExtraArguments method as we are no longer using it. BUG=63427 TEST=none Review URL: http://codereview.chromium.org/5109006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66916 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_tab.idl')
-rw-r--r--chrome_frame/chrome_tab.idl13
1 files changed, 6 insertions, 7 deletions
diff --git a/chrome_frame/chrome_tab.idl b/chrome_frame/chrome_tab.idl
index 5894e3f..3ec0236 100644
--- a/chrome_frame/chrome_tab.idl
+++ b/chrome_frame/chrome_tab.idl
@@ -84,10 +84,10 @@ interface IChromeFrame : IDispatch {
};
[
- object,
+ object,
uuid(851bedec-4b2c-4959-abc0-a53403117257),
- local, // This interface should never be marshaled.
- hidden,
+ local, // This interface should never be marshaled.
+ hidden,
]
// Internal implementation interface. Not intended as an API. May change
// frequently, don't treat this as frozen.
@@ -98,18 +98,17 @@ interface IChromeFrameInternal : IUnknown {
[
object,
- uuid(8AD52429-3CE0-4883-BC69-2DFA055D20D4),
+ uuid(B1B52A4D-B22E-489f-8CCD-1CF9166FA90E),
oleautomation,
nonextensible,
hidden,
]
+// Internal implementation interface. Not intended as an API. May change
+// frequently, don't treat this as frozen.
interface IChromeFramePrivileged : IUnknown {
// If the host returns false for wants_privileged, the control
// won't enable privileged mode.
HRESULT GetWantsPrivileged([out] boolean *wants_privileged);
- // Extra arguments to supply to the Chrome instance. Returns S_FALSE when
- // no extra arguments are needed. Always sets the output string to non-NULL.
- HRESULT GetChromeExtraArguments([out] BSTR *args);
// The profile name we want to use.
HRESULT GetChromeProfileName([out] BSTR *profile_name);
// The comma-separated list of extension API functions you wish to automate.