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

Side by Side Diff: webkit/glue/weburlrequest_impl.h

Issue 46026: Get rid of stashing a frame pointer with ResourceRequest and just store the r... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | « webkit/glue/weburlrequest.h ('k') | webkit/glue/weburlrequest_impl.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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 WEBKIT_GLUE_WEBURLREQUEST_IMPL_H_ 5 #ifndef WEBKIT_GLUE_WEBURLREQUEST_IMPL_H_
6 #define WEBKIT_GLUE_WEBURLREQUEST_IMPL_H_ 6 #define WEBKIT_GLUE_WEBURLREQUEST_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "webkit/glue/weburlrequest.h" 9 #include "webkit/glue/weburlrequest.h"
10 10
(...skipping 28 matching lines...) Expand all
39 virtual void GetHttpHeaders(HeaderMap* headers) const; 39 virtual void GetHttpHeaders(HeaderMap* headers) const;
40 virtual void SetHttpHeaders(const HeaderMap& headers); 40 virtual void SetHttpHeaders(const HeaderMap& headers);
41 virtual std::string GetHttpReferrer() const; 41 virtual std::string GetHttpReferrer() const;
42 virtual std::string GetHistoryState() const; 42 virtual std::string GetHistoryState() const;
43 virtual void SetHistoryState(const std::string& value); 43 virtual void SetHistoryState(const std::string& value);
44 virtual std::string GetSecurityInfo() const; 44 virtual std::string GetSecurityInfo() const;
45 virtual void SetSecurityInfo(const std::string& value); 45 virtual void SetSecurityInfo(const std::string& value);
46 virtual bool HasUploadData() const; 46 virtual bool HasUploadData() const;
47 virtual void GetUploadData(net::UploadData* data) const; 47 virtual void GetUploadData(net::UploadData* data) const;
48 virtual void SetUploadData(const net::UploadData& data); 48 virtual void SetUploadData(const net::UploadData& data);
49 virtual void SetRequestorID(int requestor_id);
49 50
50 // WebRequestImpl 51 // WebRequestImpl
51 const WebCore::FrameLoadRequest& frame_load_request() const { 52 const WebCore::FrameLoadRequest& frame_load_request() const {
52 return request_; 53 return request_;
53 } 54 }
54 void set_frame_load_request(const WebCore::FrameLoadRequest& request) { 55 void set_frame_load_request(const WebCore::FrameLoadRequest& request) {
55 request_ = request; 56 request_ = request;
56 } 57 }
57 58
58 PassRefPtr<WebCore::HistoryItem> history_item() const { 59 PassRefPtr<WebCore::HistoryItem> history_item() const {
59 return history_item_; 60 return history_item_;
60 } 61 }
61 62
62 protected: 63 protected:
63 WebCore::FrameLoadRequest request_; 64 WebCore::FrameLoadRequest request_;
64 RefPtr<WebCore::HistoryItem> history_item_; 65 RefPtr<WebCore::HistoryItem> history_item_;
65 scoped_refptr<ExtraData> extra_data_; 66 scoped_refptr<ExtraData> extra_data_;
66 }; 67 };
67 68
68 #endif // #ifndef WEBKIT_GLUE_WEBURLREQUEST_IMPL_H_ 69 #endif // #ifndef WEBKIT_GLUE_WEBURLREQUEST_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/glue/weburlrequest.h ('k') | webkit/glue/weburlrequest_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698