| 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 1282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1293 mojo::Binding<mojom::Frame> frame_binding_; | 1293 mojo::Binding<mojom::Frame> frame_binding_; |
| 1294 mojom::FrameHostPtr frame_host_; | 1294 mojom::FrameHostPtr frame_host_; |
| 1295 | 1295 |
| 1296 // Indicates whether |didAccessInitialDocument| was called. | 1296 // Indicates whether |didAccessInitialDocument| was called. |
| 1297 bool has_accessed_initial_document_; | 1297 bool has_accessed_initial_document_; |
| 1298 | 1298 |
| 1299 AssociatedInterfaceRegistryImpl associated_interfaces_; | 1299 AssociatedInterfaceRegistryImpl associated_interfaces_; |
| 1300 std::unique_ptr<AssociatedInterfaceProviderImpl> | 1300 std::unique_ptr<AssociatedInterfaceProviderImpl> |
| 1301 remote_associated_interfaces_; | 1301 remote_associated_interfaces_; |
| 1302 | 1302 |
| 1303 // TODO(dcheng): Remove these members. |
| 1304 bool committed_first_load_ = false; |
| 1305 bool name_changed_before_first_commit_ = false; |
| 1306 |
| 1303 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1307 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1304 | 1308 |
| 1305 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1309 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1306 }; | 1310 }; |
| 1307 | 1311 |
| 1308 } // namespace content | 1312 } // namespace content |
| 1309 | 1313 |
| 1310 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1314 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |