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

Side by Side Diff: webkit/glue/webdatasource.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_WEBDATASOURCE_H__ 5 #ifndef WEBKIT_GLUE_WEBDATASOURCE_H__
6 #define WEBKIT_GLUE_WEBDATASOURCE_H__ 6 #define WEBKIT_GLUE_WEBDATASOURCE_H__
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "googleurl/src/gurl.h"
12 11
12 class GURL;
13 struct PasswordForm; 13 struct PasswordForm;
14 class SearchableFormData; 14 class SearchableFormData;
15 class WebFrame; 15 class WebFrame;
16 class WebRequest; 16 class WebRequest;
17 class WebResponse; 17 class WebResponse;
18 18
19 class WebDataSource { 19 class WebDataSource {
20 public: 20 public:
21 // 21 //
22 // @method webFrame 22 // @method webFrame
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 virtual ~WebDataSource() { } 183 virtual ~WebDataSource() { }
184 184
185 private: 185 private:
186 DISALLOW_EVIL_CONSTRUCTORS(WebDataSource); 186 DISALLOW_EVIL_CONSTRUCTORS(WebDataSource);
187 }; 187 };
188 188
189 189
190 190
191 #endif // #ifndef WEBKIT_GLUE_WEBDATASOURCE_H__ 191 #endif // #ifndef WEBKIT_GLUE_WEBDATASOURCE_H__
192 192
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698