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

Unified Diff: chrome_frame/urlmon_upload_data_stream.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/urlmon_moniker.cc ('k') | chrome_frame/urlmon_upload_data_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/urlmon_upload_data_stream.h
diff --git a/chrome_frame/urlmon_upload_data_stream.h b/chrome_frame/urlmon_upload_data_stream.h
deleted file mode 100644
index b37e478a04240332310d2e647fc561f323c8ed9c..0000000000000000000000000000000000000000
--- a/chrome_frame/urlmon_upload_data_stream.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (c) 2012 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_URLMON_UPLOAD_DATA_STREAM_H_
-#define CHROME_FRAME_URLMON_UPLOAD_DATA_STREAM_H_
-
-#include <urlmon.h>
-#include <atlbase.h>
-#include <atlcom.h>
-
-#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
-#include "chrome_frame/stream_impl.h"
-#include "net/base/upload_data.h"
-#include "net/base/upload_data_stream.h"
-
-// Provides an IStream interface to the very different UploadDataStream
-// implementation.
-class UrlmonUploadDataStream : public CComObjectRootEx<CComMultiThreadModel>,
- public StreamImpl {
- public:
- UrlmonUploadDataStream() {}
-
- BEGIN_COM_MAP(UrlmonUploadDataStream)
- COM_INTERFACE_ENTRY(ISequentialStream)
- COM_INTERFACE_ENTRY(IStream)
- END_COM_MAP()
-
- bool Initialize(net::UploadData* upload_data);
-
- // Partial implementation of IStream.
- STDMETHOD(Read)(void* pv, ULONG cb, ULONG* read);
- STDMETHOD(Seek)(LARGE_INTEGER move, DWORD origin, ULARGE_INTEGER* new_pos);
- STDMETHOD(Stat)(STATSTG *pstatstg, DWORD grfStatFlag);
-
- private:
- scoped_refptr<net::UploadData> upload_data_;
- scoped_ptr<net::UploadDataStream> request_body_stream_;
-};
-
-#endif // CHROME_FRAME_URLMON_UPLOAD_DATA_STREAM_H_
« no previous file with comments | « chrome_frame/urlmon_moniker.cc ('k') | chrome_frame/urlmon_upload_data_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698