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

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

Issue 20378: Reduce the amount of included header files. Vast change like in "Oh God! This... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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
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_WEBRESPONSEIMPL_H__ 5 #ifndef WEBKIT_GLUE_WEBRESPONSEIMPL_H_
6 #define WEBKIT_GLUE_WEBRESPONSEIMPL_H__ 6 #define WEBKIT_GLUE_WEBRESPONSEIMPL_H_
7 7
8 #include <string>
9
10 #include "googleurl/src/gurl.h"
11 #include "webkit/glue/glue_util.h" 8 #include "webkit/glue/glue_util.h"
12 #include "webkit/glue/webresponse.h" 9 #include "webkit/glue/webresponse.h"
13 10
14 #include "ResourceResponse.h" 11 #include "ResourceResponse.h"
15 12
16 class WebResponseImpl : public WebResponse { 13 class WebResponseImpl : public WebResponse {
17 public: 14 public:
18 WebResponseImpl() { } 15 WebResponseImpl() { }
19 explicit WebResponseImpl(const WebCore::ResourceResponse& response) 16 explicit WebResponseImpl(const WebCore::ResourceResponse& response)
20 : response_(response) { } 17 : response_(response) { }
(...skipping 20 matching lines...) Expand all
41 virtual bool IsContentFiltered() const { 38 virtual bool IsContentFiltered() const {
42 return response_.isContentFiltered(); 39 return response_.isContentFiltered();
43 } 40 }
44 41
45 private: 42 private:
46 WebCore::ResourceResponse response_; 43 WebCore::ResourceResponse response_;
47 44
48 DISALLOW_EVIL_CONSTRUCTORS(WebResponseImpl); 45 DISALLOW_EVIL_CONSTRUCTORS(WebResponseImpl);
49 }; 46 };
50 47
51 #endif // #ifndef WEBKIT_GLUE_WEBRESPONSEIMPL_H__ 48 #endif // #ifndef WEBKIT_GLUE_WEBRESPONSEIMPL_H_
52
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698