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/supports_user_data.h" | 12 #include "base/supports_user_data.h" |
13 #include "base/time.h" | 13 #include "base/time/time.h" |
14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
15 #include "net/http/http_response_info.h" | 15 #include "net/http/http_response_info.h" |
16 #include "third_party/WebKit/public/web/WebDataSource.h" | 16 #include "third_party/WebKit/public/web/WebDataSource.h" |
17 | 17 |
18 namespace content { | 18 namespace content { |
19 | 19 |
20 class NavigationState; | 20 class NavigationState; |
21 struct PasswordForm; | 21 struct PasswordForm; |
22 | 22 |
23 // The RenderView stores an instance of this class in the "extra data" of each | 23 // The RenderView stores an instance of this class in the "extra data" of each |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 LoadType load_type_; | 224 LoadType load_type_; |
225 | 225 |
226 scoped_ptr<NavigationState> navigation_state_; | 226 scoped_ptr<NavigationState> navigation_state_; |
227 | 227 |
228 bool can_load_local_resources_; | 228 bool can_load_local_resources_; |
229 }; | 229 }; |
230 | 230 |
231 #endif // CONTENT_PUBLIC_RENDERER_DOCUMENT_STATE_H_ | 231 #endif // CONTENT_PUBLIC_RENDERER_DOCUMENT_STATE_H_ |
232 | 232 |
233 } // namespace content | 233 } // namespace content |
OLD | NEW |