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_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 Loading... |
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 |
OLD | NEW |