| 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 IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ | 5 #ifndef IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ |
| 6 #define IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ | 6 #define IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <map> | 11 #include <map> |
| 12 #include <memory> | 12 #include <memory> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #import "base/mac/scoped_nsobject.h" |
| 16 #include "base/macros.h" | 17 #include "base/macros.h" |
| 17 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
| 18 #include "base/observer_list.h" | 19 #include "base/observer_list.h" |
| 19 #include "base/values.h" | 20 #include "base/values.h" |
| 20 #include "ios/web/navigation/navigation_manager_delegate.h" | 21 #include "ios/web/navigation/navigation_manager_delegate.h" |
| 21 #include "ios/web/navigation/navigation_manager_impl.h" | 22 #include "ios/web/navigation/navigation_manager_impl.h" |
| 22 #include "ios/web/net/request_tracker_impl.h" | 23 #include "ios/web/net/request_tracker_impl.h" |
| 23 #import "ios/web/public/java_script_dialog_callback.h" | 24 #import "ios/web/public/java_script_dialog_callback.h" |
| 24 #include "ios/web/public/java_script_dialog_type.h" | 25 #include "ios/web/public/java_script_dialog_type.h" |
| 25 #include "ios/web/public/web_state/web_state.h" | 26 #include "ios/web/public/web_state/web_state.h" |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 | 368 |
| 368 // Mojo interface registry for this WebState. | 369 // Mojo interface registry for this WebState. |
| 369 std::unique_ptr<shell::InterfaceRegistry> mojo_interface_registry_; | 370 std::unique_ptr<shell::InterfaceRegistry> mojo_interface_registry_; |
| 370 | 371 |
| 371 DISALLOW_COPY_AND_ASSIGN(WebStateImpl); | 372 DISALLOW_COPY_AND_ASSIGN(WebStateImpl); |
| 372 }; | 373 }; |
| 373 | 374 |
| 374 } // namespace web | 375 } // namespace web |
| 375 | 376 |
| 376 #endif // IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ | 377 #endif // IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ |
| OLD | NEW |