OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_PUBLIC_RENDERER_DOCUMENT_STATE_H_ | 5 #ifndef CONTENT_PUBLIC_RENDERER_DOCUMENT_STATE_H_ |
6 #define CONTENT_PUBLIC_RENDERER_DOCUMENT_STATE_H_ | 6 #define CONTENT_PUBLIC_RENDERER_DOCUMENT_STATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/time.h" | 12 #include "base/time.h" |
13 #include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h
" | 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h
" |
| 14 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" |
15 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLReques
t.h" | |
16 | 16 |
17 namespace webkit_glue { | 17 namespace webkit_glue { |
18 class AltErrorPageResourceFetcher; | 18 class AltErrorPageResourceFetcher; |
19 } | 19 } |
20 | 20 |
21 namespace content { | 21 namespace content { |
22 | 22 |
23 class NavigationState; | 23 class NavigationState; |
24 struct PasswordForm; | 24 struct PasswordForm; |
25 | 25 |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 scoped_ptr<webkit_glue::AltErrorPageResourceFetcher> alt_error_page_fetcher_; | 305 scoped_ptr<webkit_glue::AltErrorPageResourceFetcher> alt_error_page_fetcher_; |
306 | 306 |
307 scoped_ptr<NavigationState> navigation_state_; | 307 scoped_ptr<NavigationState> navigation_state_; |
308 | 308 |
309 bool can_load_local_resources_; | 309 bool can_load_local_resources_; |
310 }; | 310 }; |
311 | 311 |
312 #endif // CONTENT_PUBLIC_RENDERER_DOCUMENT_STATE_H_ | 312 #endif // CONTENT_PUBLIC_RENDERER_DOCUMENT_STATE_H_ |
313 | 313 |
314 } // namespace content | 314 } // namespace content |
OLD | NEW |