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

Side by Side Diff: chrome_frame/urlmon_url_request_private.h

Issue 8954017: Avoid including gtest file directly, and go through base instead (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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
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_URLMON_URL_REQUEST_PRIVATE_H_ 5 #ifndef CHROME_FRAME_URLMON_URL_REQUEST_PRIVATE_H_
6 #define CHROME_FRAME_URLMON_URL_REQUEST_PRIVATE_H_ 6 #define CHROME_FRAME_URLMON_URL_REQUEST_PRIVATE_H_
7 7
8 #include <atlbase.h> 8 #include <atlbase.h>
9 #include <atlcom.h> 9 #include <atlcom.h>
10 10
11 #include <string> 11 #include <string>
12 12
13 #include "base/callback_old.h" 13 #include "base/callback_old.h"
14 #include "base/gtest_prod_util.h"
14 #include "base/threading/platform_thread.h" 15 #include "base/threading/platform_thread.h"
15 #include "net/base/net_errors.h" 16 #include "net/base/net_errors.h"
16 #include "net/http/http_response_headers.h" 17 #include "net/http/http_response_headers.h"
17 #include "net/url_request/url_request_status.h" 18 #include "net/url_request/url_request_status.h"
18 #include "testing/gtest/include/gtest/gtest_prod.h"
19 19
20 class UrlmonUrlRequest 20 class UrlmonUrlRequest
21 : public CComObjectRootEx<CComMultiThreadModel>, 21 : public CComObjectRootEx<CComMultiThreadModel>,
22 public PluginUrlRequest, 22 public PluginUrlRequest,
23 public IServiceProviderImpl<UrlmonUrlRequest>, 23 public IServiceProviderImpl<UrlmonUrlRequest>,
24 public IBindStatusCallback, 24 public IBindStatusCallback,
25 public IHttpNegotiate, 25 public IHttpNegotiate,
26 public IAuthenticate, 26 public IAuthenticate,
27 public IHttpSecurity { 27 public IHttpSecurity {
28 public: 28 public:
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 // when this object is destroyed. Happens if we return 255 // when this object is destroyed. Happens if we return
256 // INET_E_TERMINATE_BIND from OnDataAvailable in the last data notification. 256 // INET_E_TERMINATE_BIND from OnDataAvailable in the last data notification.
257 bool cleanup_transaction_; 257 bool cleanup_transaction_;
258 // Copy of the request headers. 258 // Copy of the request headers.
259 std::string request_headers_; 259 std::string request_headers_;
260 260
261 DISALLOW_COPY_AND_ASSIGN(UrlmonUrlRequest); 261 DISALLOW_COPY_AND_ASSIGN(UrlmonUrlRequest);
262 }; 262 };
263 263
264 #endif // CHROME_FRAME_URLMON_URL_REQUEST_PRIVATE_H_ 264 #endif // CHROME_FRAME_URLMON_URL_REQUEST_PRIVATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/bookmarks/bookmark_editor_view.h ('k') | jingle/notifier/base/xmpp_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698