| 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 "webkit/glue/weburlrequest.h" | 10 #include "webkit/glue/weburlrequest.h" |
| 9 #include "base/basictypes.h" | |
| 10 | 11 |
| 11 #pragma warning(push, 0) | 12 MSVC_PUSH_WARNING_LEVEL(0); |
| 12 #include "FrameLoadRequest.h" | 13 #include "FrameLoadRequest.h" |
| 13 #include "HistoryItem.h" | 14 #include "HistoryItem.h" |
| 14 #pragma warning(pop) | 15 MSVC_POP_WARNING(); |
| 15 | 16 |
| 16 class WebRequestImpl : public WebRequest { | 17 class WebRequestImpl : public WebRequest { |
| 17 public: | 18 public: |
| 18 WebRequestImpl(); | 19 WebRequestImpl(); |
| 19 | 20 |
| 20 explicit WebRequestImpl(const GURL& url); | 21 explicit WebRequestImpl(const GURL& url); |
| 21 explicit WebRequestImpl(const WebCore::ResourceRequest& request); | 22 explicit WebRequestImpl(const WebCore::ResourceRequest& request); |
| 22 explicit WebRequestImpl(const WebCore::FrameLoadRequest& request); | 23 explicit WebRequestImpl(const WebCore::FrameLoadRequest& request); |
| 23 | 24 |
| 24 // WebRequest | 25 // WebRequest |
| (...skipping 29 matching lines...) Expand all Loading... |
| 54 } | 55 } |
| 55 | 56 |
| 56 protected: | 57 protected: |
| 57 WebCore::FrameLoadRequest request_; | 58 WebCore::FrameLoadRequest request_; |
| 58 RefPtr<WebCore::HistoryItem> history_item_; | 59 RefPtr<WebCore::HistoryItem> history_item_; |
| 59 scoped_refptr<ExtraData> extra_data_; | 60 scoped_refptr<ExtraData> extra_data_; |
| 60 }; | 61 }; |
| 61 | 62 |
| 62 #endif // #ifndef WEBKIT_GLUE_WEBURLREQUEST_IMPL_H__ | 63 #endif // #ifndef WEBKIT_GLUE_WEBURLREQUEST_IMPL_H__ |
| 63 | 64 |
| OLD | NEW |