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_DATA_SOURCE_IMPL_H_ | 5 #ifndef IOS_WEB_WEBUI_WEB_UI_IOS_DATA_SOURCE_IMPL_H_ |
6 #define IOS_WEB_WEBUI_WEB_UI_IOS_DATA_SOURCE_IMPL_H_ | 6 #define IOS_WEB_WEBUI_WEB_UI_IOS_DATA_SOURCE_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | |
12 #include "base/callback.h" | 11 #include "base/callback.h" |
13 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" |
14 #include "base/values.h" | 14 #include "base/values.h" |
15 #include "ios/web/public/url_data_source_ios.h" | 15 #include "ios/web/public/url_data_source_ios.h" |
16 #include "ios/web/public/web_ui_ios_data_source.h" | 16 #include "ios/web/public/web_ui_ios_data_source.h" |
17 #include "ios/web/webui/url_data_manager_ios.h" | 17 #include "ios/web/webui/url_data_manager_ios.h" |
18 #include "ios/web/webui/url_data_source_ios_impl.h" | 18 #include "ios/web/webui/url_data_source_ios_impl.h" |
19 | 19 |
20 namespace web { | 20 namespace web { |
21 | 21 |
22 class WebUIIOSDataSourceImpl : public URLDataSourceIOSImpl, | 22 class WebUIIOSDataSourceImpl : public URLDataSourceIOSImpl, |
23 public WebUIIOSDataSource { | 23 public WebUIIOSDataSource { |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 bool deny_xframe_options_; | 73 bool deny_xframe_options_; |
74 bool disable_set_font_strings_; | 74 bool disable_set_font_strings_; |
75 bool replace_existing_source_; | 75 bool replace_existing_source_; |
76 | 76 |
77 DISALLOW_COPY_AND_ASSIGN(WebUIIOSDataSourceImpl); | 77 DISALLOW_COPY_AND_ASSIGN(WebUIIOSDataSourceImpl); |
78 }; | 78 }; |
79 | 79 |
80 } // web | 80 } // web |
81 | 81 |
82 #endif // IOS_WEB_WEBUI_WEB_UI_IOS_DATA_SOURCE_IMPL_H_ | 82 #endif // IOS_WEB_WEBUI_WEB_UI_IOS_DATA_SOURCE_IMPL_H_ |
OLD | NEW |