summaryrefslogtreecommitdiffstats
path: root/chrome_frame/extra_system_apis.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame/extra_system_apis.h')
-rw-r--r--chrome_frame/extra_system_apis.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/chrome_frame/extra_system_apis.h b/chrome_frame/extra_system_apis.h
index 765c5b2..93aad26 100644
--- a/chrome_frame/extra_system_apis.h
+++ b/chrome_frame/extra_system_apis.h
@@ -84,34 +84,6 @@ IDocObjectService : public IUnknown {
STDMETHOD(IsErrorUrl)(LPCTSTR url, BOOL* is_error) = 0;
};
-// Travel log interface that supports deleting entries from the travel log.
-// See for more details:
-// http://msdn.microsoft.com/en-us/library/aa511272.aspx
-// http://www.geoffchappell.com/viewer.htm?doc=studies/windows/ie/shdocvw/interfaces/tlog/itravellogex/createenumentry.htm
-// It seems that in IE8 the interface name was changed to IIEITravelLogEx.
-interface __declspec(uuid("3050F679-98B5-11CF-BB82-00AA00BDCE0B"))
-ITravelLogEx : public IUnknown {
- STDMETHOD(FindTravelEntryWithUrl)(IUnknown* unk, UINT code_page,
- const wchar_t* url,
- ITravelEntry** entry) = 0;
- STDMETHOD(TravelToUrl)(IUnknown* unk, UINT code_page, const wchar_t* url) = 0;
- STDMETHOD(DeleteIndexEntry)(IUnknown* unk, int offset) = 0;
- STDMETHOD(DeleteUrlEntry)(IUnknown* unk, UINT code_page,
- const wchar_t* url) = 0;
- STDMETHOD(CountEntryNodes)(IUnknown* unk, DWORD flags, DWORD* count) = 0;
- STDMETHOD(CreateEnumEntry)(IUnknown* unk, IEnumTravelLogEntry** entry_enum,
- DWORD flags) = 0;
- STDMETHOD(DeleteEntry)(IUnknown* unk, ITravelLogEntry* entry) = 0;
- STDMETHOD(InsertEntry)(IUnknown* unk_relative_to,
- ITravelLogEntry* entry_relative_to, BOOL prepend,
- IUnknown* unk, ITravelLogEntry** entry) = 0;
- STDMETHOD(TravelToEntry)(IUnknown* unk, ITravelLogEntry* entry) = 0;
-};
-
-interface __declspec(uuid("DD9E2B32-4D78-44F1-B59B-8CA4C9392140"))
-IIEITravelLogEx : public ITravelLogEx {
-};
-
// Flags for ITravelLogEx::CountEntryNodes, CreateEnumEntry.
#define TLEF_RELATIVE_INCLUDE_CURRENT (0x01) // count the current entry
#define TLEF_RELATIVE_BACK (0x10) // count backward entries