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 #include "base/macros.h" | 16 #include "base/macros.h" |
17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
18 #include "base/observer_list.h" | 18 #include "base/observer_list.h" |
19 #include "base/values.h" | 19 #include "base/values.h" |
20 #include "ios/web/navigation/navigation_manager_delegate.h" | 20 #import "ios/web/navigation/navigation_manager_delegate.h" |
21 #include "ios/web/navigation/navigation_manager_impl.h" | 21 #import "ios/web/navigation/navigation_manager_impl.h" |
22 #include "ios/web/net/request_tracker_impl.h" | 22 #import "ios/web/net/request_tracker_impl.h" |
23 #import "ios/web/public/java_script_dialog_callback.h" | 23 #include "ios/web/public/java_script_dialog_callback.h" |
Eugene But (OOO till 7-30)
2016/12/28 17:27:26
ditto
Olivier
2016/12/28 17:48:05
Adding missing import
| |
24 #include "ios/web/public/java_script_dialog_type.h" | 24 #include "ios/web/public/java_script_dialog_type.h" |
25 #include "ios/web/public/web_state/web_state.h" | 25 #import "ios/web/public/web_state/web_state.h" |
26 #include "url/gurl.h" | 26 #include "url/gurl.h" |
27 | 27 |
28 @protocol CRWRequestTrackerDelegate; | 28 @protocol CRWRequestTrackerDelegate; |
29 @class CRWWebController; | 29 @class CRWWebController; |
30 @protocol CRWWebViewProxy; | 30 @protocol CRWWebViewProxy; |
31 @class NSURLRequest; | 31 @class NSURLRequest; |
32 @class NSURLResponse; | 32 @class NSURLResponse; |
33 | 33 |
34 namespace net { | 34 namespace net { |
35 class HttpResponseHeaders; | 35 class HttpResponseHeaders; |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
372 | 372 |
373 // Image Fetcher used to images. | 373 // Image Fetcher used to images. |
374 std::unique_ptr<ImageDataFetcher> image_fetcher_; | 374 std::unique_ptr<ImageDataFetcher> image_fetcher_; |
375 | 375 |
376 DISALLOW_COPY_AND_ASSIGN(WebStateImpl); | 376 DISALLOW_COPY_AND_ASSIGN(WebStateImpl); |
377 }; | 377 }; |
378 | 378 |
379 } // namespace web | 379 } // namespace web |
380 | 380 |
381 #endif // IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ | 381 #endif // IOS_WEB_WEB_STATE_WEB_STATE_IMPL_H_ |
OLD | NEW |