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

Unified Diff: chrome_frame/chrome_protocol.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/chrome_launcher_utils.cc ('k') | chrome_frame/chrome_protocol.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_protocol.h
diff --git a/chrome_frame/chrome_protocol.h b/chrome_frame/chrome_protocol.h
deleted file mode 100644
index f89ac70932c84226db2c52d71dc7c0efbc414b8b..0000000000000000000000000000000000000000
--- a/chrome_frame/chrome_protocol.h
+++ /dev/null
@@ -1,62 +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_CHROME_PROTOCOL_H_
-#define CHROME_FRAME_CHROME_PROTOCOL_H_
-
-#include <atlbase.h>
-#include <atlcom.h>
-
-#include "chrome_frame/chrome_tab.h"
-#include "chrome_frame/resource.h"
-#include "grit/chrome_frame_resources.h"
-
-// ChromeProtocol
-class ATL_NO_VTABLE ChromeProtocol
- : public CComObjectRootEx<CComSingleThreadModel>,
- public CComCoClass<ChromeProtocol, &CLSID_ChromeProtocol>,
- public IInternetProtocol {
- public:
- ChromeProtocol() {
- }
- DECLARE_REGISTRY_RESOURCEID(IDR_CHROMEPROTOCOL)
-
- BEGIN_COM_MAP(ChromeProtocol)
- COM_INTERFACE_ENTRY(IInternetProtocol)
- COM_INTERFACE_ENTRY(IInternetProtocolRoot)
- END_COM_MAP()
-
- DECLARE_PROTECT_FINAL_CONSTRUCT()
-
- HRESULT FinalConstruct() {
- return S_OK;
- }
- void FinalRelease() {
- }
-
- public:
- // IInternetProtocolRoot
- STDMETHOD(Start)(LPCWSTR url,
- IInternetProtocolSink* prot_sink,
- IInternetBindInfo* bind_info,
- DWORD flags,
- DWORD reserved);
- STDMETHOD(Continue)(PROTOCOLDATA* protocol_data);
- STDMETHOD(Abort)(HRESULT reason, DWORD options);
- STDMETHOD(Terminate)(DWORD options);
- STDMETHOD(Suspend)();
- STDMETHOD(Resume)();
-
- // IInternetProtocol based on IInternetProtocolRoot
- STDMETHOD(Read)(void* buffer,
- ULONG buffer_size_in_bytes,
- ULONG* bytes_read);
- STDMETHOD(Seek)(LARGE_INTEGER move_by,
- DWORD origin,
- ULARGE_INTEGER* new_position);
- STDMETHOD(LockRequest)(DWORD options);
- STDMETHOD(UnlockRequest)(void);
-};
-
-#endif // CHROME_FRAME_CHROME_PROTOCOL_H_
« no previous file with comments | « chrome_frame/chrome_launcher_utils.cc ('k') | chrome_frame/chrome_protocol.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698