Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Unified Diff: chrome_frame/chrome_active_document.h

Issue 5698005: Add support for gcf:about:plugins in chrome frame full tab mode. The URL vali... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome_frame/chrome_active_document.cc » ('j') | chrome_frame/chrome_frame_activex_base.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_active_document.h
===================================================================
--- chrome_frame/chrome_active_document.h (revision 68604)
+++ chrome_frame/chrome_active_document.h (working copy)
@@ -208,7 +208,8 @@
public IPersistHistory,
public IEnumPrivacyRecords,
public HTMLWindowImpl<IHTMLWindow2>,
- public HTMLPrivateWindowImpl<IHTMLPrivateWindow> {
+ public HTMLPrivateWindowImpl<IHTMLPrivateWindow>,
+ public IMonikerProp {
amit 2010/12/10 23:56:17 Please get rid of unrelated changes from this CL.
ananta 2010/12/11 02:11:11 Done.
public:
typedef ChromeFrameActivexBase<ChromeActiveDocument,
CLSID_ChromeActiveDocument> BaseActiveX;
@@ -230,6 +231,7 @@
COM_INTERFACE_ENTRY(IHTMLWindow2)
COM_INTERFACE_ENTRY(IHTMLPrivateWindow)
COM_INTERFACE_ENTRY(IEnumPrivacyRecords)
+ COM_INTERFACE_ENTRY(IMonikerProp)
COM_INTERFACE_ENTRY_CHAIN(BaseActiveX)
END_COM_MAP()
@@ -337,6 +339,8 @@
// IHTMLPrivateWindow methods
STDMETHOD(GetAddressBarUrl)(BSTR* url);
+ STDMETHOD(PutProperty)(MONIKERPROPERTY moniker_prop, LPCWSTR value);
+
// ChromeFrameActivexBase overrides
HRESULT IOleObject_SetClientSite(IOleClientSite* client_site);
@@ -356,6 +360,9 @@
STDMETHOD(GetPrivacyImpacted)(BOOL* privacy_impacted);
STDMETHOD(Next)(BSTR* url, BSTR* policy, LONG* reserved, DWORD* flags);
+ // NavigationConstraints overrides.
+ bool IsSchemeAllowed(const GURL& url);
+
// Accessor for InPlaceMenu. Returns S_OK if set, S_FALSE if NULL.
HRESULT GetInPlaceFrame(IOleInPlaceFrame** in_place_frame);
« no previous file with comments | « no previous file | chrome_frame/chrome_active_document.cc » ('j') | chrome_frame/chrome_frame_activex_base.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698