| 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_VIEW_INTERNAL_WEB_VIEW_WEB_CLIENT_H_ | 5 #ifndef IOS_WEB_VIEW_INTERNAL_WEB_VIEW_WEB_CLIENT_H_ |
| 6 #define IOS_WEB_VIEW_INTERNAL_WEB_VIEW_WEB_CLIENT_H_ | 6 #define IOS_WEB_VIEW_INTERNAL_WEB_VIEW_WEB_CLIENT_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 |
| 9 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 10 #import "ios/web/public/web_client.h" | 11 #import "ios/web/public/web_client.h" |
| 11 | 12 |
| 12 @protocol CWVDelegate; | 13 @protocol CWVDelegate; |
| 13 | 14 |
| 14 namespace ios_web_view { | 15 namespace ios_web_view { |
| 15 class WebViewBrowserState; | 16 class WebViewBrowserState; |
| 16 class WebViewWebMainParts; | 17 class WebViewWebMainParts; |
| 17 | 18 |
| 18 // WebView implementation of WebClient. | 19 // WebView implementation of WebClient. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 38 | 39 |
| 39 // The WebMainParts created by |CreateWebMainParts()|. | 40 // The WebMainParts created by |CreateWebMainParts()|. |
| 40 WebViewWebMainParts* web_main_parts_; | 41 WebViewWebMainParts* web_main_parts_; |
| 41 | 42 |
| 42 DISALLOW_COPY_AND_ASSIGN(WebViewWebClient); | 43 DISALLOW_COPY_AND_ASSIGN(WebViewWebClient); |
| 43 }; | 44 }; |
| 44 | 45 |
| 45 } // namespace ios_web_view | 46 } // namespace ios_web_view |
| 46 | 47 |
| 47 #endif // IOS_WEB_VIEW_INTERNAL_WEB_VIEW_WEB_CLIENT_H_ | 48 #endif // IOS_WEB_VIEW_INTERNAL_WEB_VIEW_WEB_CLIENT_H_ |
| OLD | NEW |