OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IOS_WEB_WEBUI_SHARED_RESOURCES_DATA_SOURCE_IOS_H_ |
| 6 #define IOS_WEB_WEBUI_SHARED_RESOURCES_DATA_SOURCE_IOS_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" |
| 10 #include "ios/web/public/url_data_source_ios.h" |
| 11 |
| 12 namespace web { |
| 13 |
| 14 // A DataSource for chrome://resources/ URLs. |
| 15 class SharedResourcesDataSourceIOS : public URLDataSourceIOS { |
| 16 public: |
| 17 SharedResourcesDataSourceIOS(); |
| 18 |
| 19 // web::URLDataSourceIOS implementation. |
| 20 std::string GetSource() const override; |
| 21 void StartDataRequest( |
| 22 const std::string& path, |
| 23 const URLDataSourceIOS::GotDataCallback& callback) override; |
| 24 std::string GetMimeType(const std::string&) const override; |
| 25 |
| 26 private: |
| 27 ~SharedResourcesDataSourceIOS() override; |
| 28 |
| 29 DISALLOW_COPY_AND_ASSIGN(SharedResourcesDataSourceIOS); |
| 30 }; |
| 31 |
| 32 } // namespace web |
| 33 |
| 34 #endif // IOS_WEB_WEBUI_SHARED_RESOURCES_DATA_SOURCE_IOS_H_ |
OLD | NEW |