OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_WEBUI_WEB_UI_IOS_IMPL_H_ | 5 #ifndef IOS_WEB_WEBUI_WEB_UI_IOS_IMPL_H_ |
6 #define IOS_WEB_WEBUI_WEB_UI_IOS_IMPL_H_ | 6 #define IOS_WEB_WEBUI_WEB_UI_IOS_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
11 #include "base/memory/scoped_vector.h" | 12 #include "base/memory/scoped_vector.h" |
12 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
13 #include "ios/public/provider/web/web_ui_ios.h" | 14 #include "ios/public/provider/web/web_ui_ios.h" |
14 | 15 |
15 namespace web { | 16 namespace web { |
16 class WebStateImpl; | 17 class WebStateImpl; |
17 } | 18 } |
18 | 19 |
19 namespace web { | 20 namespace web { |
20 | 21 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 WebStateImpl* web_state_; | 70 WebStateImpl* web_state_; |
70 | 71 |
71 scoped_ptr<WebUIIOSController> controller_; | 72 scoped_ptr<WebUIIOSController> controller_; |
72 | 73 |
73 DISALLOW_COPY_AND_ASSIGN(WebUIIOSImpl); | 74 DISALLOW_COPY_AND_ASSIGN(WebUIIOSImpl); |
74 }; | 75 }; |
75 | 76 |
76 } // namespace web | 77 } // namespace web |
77 | 78 |
78 #endif // IOS_WEB_WEBUI_WEB_UI_IOS_IMPL_H_ | 79 #endif // IOS_WEB_WEBUI_WEB_UI_IOS_IMPL_H_ |
OLD | NEW |