OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/time.h" | 13 #include "base/time.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" |
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLRequest.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 struct PasswordForm; | 18 struct PasswordForm; |
19 class AltErrorPageResourceFetcher; | 19 class AltErrorPageResourceFetcher; |
20 } | 20 } |
21 | 21 |
22 namespace content { | 22 namespace content { |
23 | 23 |
24 class NavigationState; | 24 class NavigationState; |
25 | 25 |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 WebKit::WebURLRequest::CachePolicy cache_policy_override_; | 253 WebKit::WebURLRequest::CachePolicy cache_policy_override_; |
254 | 254 |
255 scoped_ptr<webkit_glue::AltErrorPageResourceFetcher> alt_error_page_fetcher_; | 255 scoped_ptr<webkit_glue::AltErrorPageResourceFetcher> alt_error_page_fetcher_; |
256 | 256 |
257 scoped_ptr<NavigationState> navigation_state_; | 257 scoped_ptr<NavigationState> navigation_state_; |
258 }; | 258 }; |
259 | 259 |
260 #endif // CONTENT_PUBLIC_RENDERER_DOCUMENT_STATE_H_ | 260 #endif // CONTENT_PUBLIC_RENDERER_DOCUMENT_STATE_H_ |
261 | 261 |
262 } // namespace content | 262 } // namespace content |
OLD | NEW |