| 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_VIEW_INTERNAL_CRIWV_WEB_CLIENT_H_ |
| 6 #define IOS_WEB_VIEW_INTERNAL_CRIWV_WEB_CLIENT_H_ |
| 7 |
| 8 #include <memory> |
| 9 #include "base/compiler_specific.h" |
| 10 #import "ios/web/public/web_client.h" |
| 11 |
| 12 @protocol CRIWVDelegate; |
| 13 |
| 14 namespace ios_web_view { |
| 15 class CRIWVBrowserState; |
| 16 class CRIWVWebMainParts; |
| 17 |
| 18 // CRIWV-specific implementation of WebClient. Delegates some functionality to |
| 19 // CRIWVDelegate. |
| 20 class CRIWVWebClient : public web::WebClient { |
| 21 public: |
| 22 explicit CRIWVWebClient(id<CRIWVDelegate> delegate); |
| 23 ~CRIWVWebClient() override; |
| 24 |
| 25 // WebClient implementation. |
| 26 web::WebMainParts* CreateWebMainParts() override; |
| 27 std::string GetProduct() const override; |
| 28 std::string GetUserAgent(bool desktop_user_agent) const override; |
| 29 |
| 30 // TODO(crbug.com/679895): Find a better way to get a BrowserState object to |
| 31 // AppDelegate. |
| 32 CRIWVBrowserState* browser_state() const; |
| 33 |
| 34 private: |
| 35 // This object's delegate. |
| 36 id<CRIWVDelegate> delegate_; |
| 37 |
| 38 // The WebMainParts created by |CreateWebMainParts()|. |
| 39 std::unique_ptr<CRIWVWebMainParts> web_main_parts_; |
| 40 |
| 41 DISALLOW_COPY_AND_ASSIGN(CRIWVWebClient); |
| 42 }; |
| 43 |
| 44 } // namespace ios_web_view |
| 45 |
| 46 #endif // IOS_WEB_VIEW_INTERNAL_CRIWV_WEB_CLIENT_H_ |
| OLD | NEW |