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

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

Issue 2418: Unignore most warnings on POSIX in build/SConscript.main. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years, 3 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/webkit_glue.cc ('k') | webkit/glue/webview_impl.h » ('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/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
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
OLDNEW
« no previous file with comments | « webkit/glue/webkit_glue.cc ('k') | webkit/glue/webview_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698