| 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> |
| 9 #include <stdint.h> |
| 10 |
| 8 #include <map> | 11 #include <map> |
| 9 #include <string> | 12 #include <string> |
| 10 #include <vector> | 13 #include <vector> |
| 11 | 14 |
| 15 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/observer_list.h" | 18 #include "base/observer_list.h" |
| 15 #include "base/values.h" | 19 #include "base/values.h" |
| 16 #include "ios/web/navigation/navigation_manager_delegate.h" | 20 #include "ios/web/navigation/navigation_manager_delegate.h" |
| 17 #include "ios/web/navigation/navigation_manager_impl.h" | 21 #include "ios/web/navigation/navigation_manager_impl.h" |
| 18 #include "ios/web/net/request_tracker_impl.h" | 22 #include "ios/web/net/request_tracker_impl.h" |
| 19 #include "ios/web/public/web_state/web_state.h" | 23 #include "ios/web/public/web_state/web_state.h" |
| 20 #include "url/gurl.h" | 24 #include "url/gurl.h" |
| 21 | 25 |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 // any WeakPtrs to WebStateImpl are invalidated before its member variable's | 345 // any WeakPtrs to WebStateImpl are invalidated before its member variable's |
| 342 // destructors are executed, rendering them invalid. | 346 // destructors are executed, rendering them invalid. |
| 343 base::WeakPtrFactory<WebState> weak_factory_; | 347 base::WeakPtrFactory<WebState> weak_factory_; |
| 344 | 348 |
| 345 DISALLOW_COPY_AND_ASSIGN(WebStateImpl); | 349 DISALLOW_COPY_AND_ASSIGN(WebStateImpl); |
| 346 }; | 350 }; |
| 347 | 351 |
| 348 } // namespace web | 352 } // namespace web |
| 349 | 353 |
| 350 #endif // IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ | 354 #endif // IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ |
| OLD | NEW |