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

Unified Diff: chrome_frame/html_private_window_impl.h

Issue 126143005: Remove Chrome Frame code and resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to r244038 Created 6 years, 11 months 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 | « chrome_frame/host_w_controls.html ('k') | chrome_frame/html_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/html_private_window_impl.h
diff --git a/chrome_frame/html_private_window_impl.h b/chrome_frame/html_private_window_impl.h
deleted file mode 100644
index 18414b8aaabda65c05baa7e44da9395072f95036..0000000000000000000000000000000000000000
--- a/chrome_frame/html_private_window_impl.h
+++ /dev/null
@@ -1,66 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_FRAME_HTML_PRIVATE_WINDOW_IMPL_H_
-#define CHROME_FRAME_HTML_PRIVATE_WINDOW_IMPL_H_
-
-#include <atlbase.h>
-#include <atlcom.h>
-#include <mshtml.h>
-
-#include "chrome_frame/chrome_tab.h"
-#include "chrome_frame/resource.h"
-#include "grit/chrome_frame_resources.h"
-
-interface __declspec(uuid("3050F6DC-98B5-11CF-BB82-00AA00BDCE0B"))
-IHTMLPrivateWindow : public IUnknown {
- STDMETHOD(SuperNavigate)(BSTR , BSTR, BSTR, BSTR , VARIANT*,
- VARIANT*, ULONG) = 0;
- STDMETHOD(GetPendingUrl)(BSTR*) = 0;
- STDMETHOD(SetPICSTarget)(IOleCommandTarget*) = 0;
- STDMETHOD(PICSComplete)(int) = 0;
- STDMETHOD(FindWindowByName)(PCWSTR, IHTMLWindow2**) = 0;
- STDMETHOD(GetAddressBarUrl)(BSTR* url) = 0;
-};
-
-template <typename T>
-class ATL_NO_VTABLE HTMLPrivateWindowImpl : public T {
- public:
- HTMLPrivateWindowImpl() {}
-
- // IHTMLPrivateWindow
- STDMETHOD(SuperNavigate)(BSTR , BSTR, BSTR, BSTR , VARIANT*,
- VARIANT*, ULONG) {
- DLOG(INFO) << __FUNCTION__;
- return E_NOTIMPL;
- }
-
- STDMETHOD(GetPendingUrl)(BSTR*) {
- DLOG(INFO) << __FUNCTION__;
- return E_NOTIMPL;
- }
-
- STDMETHOD(SetPICSTarget)(IOleCommandTarget*) {
- DLOG(INFO) << __FUNCTION__;
- return E_NOTIMPL;
- }
-
- STDMETHOD(PICSComplete)(int) {
- DLOG(INFO) << __FUNCTION__;
- return E_NOTIMPL;
- }
-
- STDMETHOD(FindWindowByName)(LPCWSTR, IHTMLWindow2**) {
- DLOG(INFO) << __FUNCTION__;
- return E_NOTIMPL;
- }
-
- STDMETHOD(GetAddressBarUrl)(BSTR* url) {
- DLOG(INFO) << __FUNCTION__;
- return E_NOTIMPL;
- }
-};
-
-#endif // CHROME_FRAME_HTML_PRIVATE_WINDOW_IMPL_H_
-
« no previous file with comments | « chrome_frame/host_w_controls.html ('k') | chrome_frame/html_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698