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

Side by Side Diff: chrome_frame/plugin_url_request.h

Issue 6825055: Include base/win/scoped_comptr.h instead of base/scoped_comptr_win.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert bad indentation, rebase Created 9 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome_frame/in_place_menu.h ('k') | chrome_frame/protocol_sink_wrap.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_FRAME_PLUGIN_URL_REQUEST_H_ 5 #ifndef CHROME_FRAME_PLUGIN_URL_REQUEST_H_
6 #define CHROME_FRAME_PLUGIN_URL_REQUEST_H_ 6 #define CHROME_FRAME_PLUGIN_URL_REQUEST_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "base/scoped_comptr_win.h"
13 #include "base/time.h" 12 #include "base/time.h"
13 #include "base/win/scoped_comptr.h"
14 #include "chrome_frame/chrome_frame_delegate.h" 14 #include "chrome_frame/chrome_frame_delegate.h"
15 #include "chrome_frame/urlmon_upload_data_stream.h" 15 #include "chrome_frame/urlmon_upload_data_stream.h"
16 #include "ipc/ipc_message.h" 16 #include "ipc/ipc_message.h"
17 #include "net/base/host_port_pair.h" 17 #include "net/base/host_port_pair.h"
18 #include "net/base/upload_data.h" 18 #include "net/base/upload_data.h"
19 #include "net/url_request/url_request_status.h" 19 #include "net/url_request/url_request_status.h"
20 #include "webkit/glue/resource_type.h" 20 #include "webkit/glue/resource_type.h"
21 21
22 class PluginUrlRequest; 22 class PluginUrlRequest;
23 class PluginUrlRequestDelegate; 23 class PluginUrlRequestDelegate;
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 179
180 PluginUrlRequestDelegate* delegate_; 180 PluginUrlRequestDelegate* delegate_;
181 int remote_request_id_; 181 int remote_request_id_;
182 uint64 post_data_len_; 182 uint64 post_data_len_;
183 std::string url_; 183 std::string url_;
184 std::string method_; 184 std::string method_;
185 std::string referrer_; 185 std::string referrer_;
186 std::string extra_headers_; 186 std::string extra_headers_;
187 ResourceType::Type resource_type_; 187 ResourceType::Type resource_type_;
188 int load_flags_; 188 int load_flags_;
189 ScopedComPtr<IStream> upload_data_; 189 base::win::ScopedComPtr<IStream> upload_data_;
190 bool is_chunked_upload_; 190 bool is_chunked_upload_;
191 // Contains the ip address and port of the destination host. 191 // Contains the ip address and port of the destination host.
192 net::HostPortPair socket_address_; 192 net::HostPortPair socket_address_;
193 }; 193 };
194 194
195 #endif // CHROME_FRAME_PLUGIN_URL_REQUEST_H_ 195 #endif // CHROME_FRAME_PLUGIN_URL_REQUEST_H_
OLDNEW
« no previous file with comments | « chrome_frame/in_place_menu.h ('k') | chrome_frame/protocol_sink_wrap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698