| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 1312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1323 AssociatedInterfaceRegistryImpl associated_interfaces_; | 1323 AssociatedInterfaceRegistryImpl associated_interfaces_; |
| 1324 std::unique_ptr<AssociatedInterfaceProviderImpl> | 1324 std::unique_ptr<AssociatedInterfaceProviderImpl> |
| 1325 remote_associated_interfaces_; | 1325 remote_associated_interfaces_; |
| 1326 | 1326 |
| 1327 // TODO(dcheng): Remove these members. | 1327 // TODO(dcheng): Remove these members. |
| 1328 bool committed_first_load_ = false; | 1328 bool committed_first_load_ = false; |
| 1329 bool name_changed_before_first_commit_ = false; | 1329 bool name_changed_before_first_commit_ = false; |
| 1330 | 1330 |
| 1331 bool browser_side_navigation_pending_ = false; | 1331 bool browser_side_navigation_pending_ = false; |
| 1332 | 1332 |
| 1333 // PlzNavigte: The host id to be used by the AppCache system. Defaults to 0. |
| 1334 int appcache_host_id_; |
| 1335 |
| 1333 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1336 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1334 | 1337 |
| 1335 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1338 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1336 }; | 1339 }; |
| 1337 | 1340 |
| 1338 } // namespace content | 1341 } // namespace content |
| 1339 | 1342 |
| 1340 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1343 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |