OLD | NEW |
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/basictypes.h" | |
9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
10 #include "webkit/glue/weburlrequest.h" | 9 #include "webkit/glue/weburlrequest.h" |
11 | 10 |
12 MSVC_PUSH_WARNING_LEVEL(0); | 11 MSVC_PUSH_WARNING_LEVEL(0); |
13 #include "FrameLoadRequest.h" | 12 #include "FrameLoadRequest.h" |
14 #include "HistoryItem.h" | 13 #include "HistoryItem.h" |
15 MSVC_POP_WARNING(); | 14 MSVC_POP_WARNING(); |
16 | 15 |
17 class WebRequestImpl : public WebRequest { | 16 class WebRequestImpl : public WebRequest { |
18 public: | 17 public: |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 PassRefPtr<WebCore::HistoryItem> history_item() const { | 58 PassRefPtr<WebCore::HistoryItem> history_item() const { |
60 return history_item_; | 59 return history_item_; |
61 } | 60 } |
62 | 61 |
63 protected: | 62 protected: |
64 WebCore::FrameLoadRequest request_; | 63 WebCore::FrameLoadRequest request_; |
65 RefPtr<WebCore::HistoryItem> history_item_; | 64 RefPtr<WebCore::HistoryItem> history_item_; |
66 scoped_refptr<ExtraData> extra_data_; | 65 scoped_refptr<ExtraData> extra_data_; |
67 }; | 66 }; |
68 | 67 |
69 #endif // #ifndef WEBKIT_GLUE_WEBURLREQUEST_IMPL_H__ | 68 #endif // #ifndef WEBKIT_GLUE_WEBURLREQUEST_IMPL_H_ |
70 | |
OLD | NEW |