| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 ANDROID_WEBVIEW_NET_AW_NETWORK_CHANGE_NOTIFIER_FACTORY_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_NET_AW_NETWORK_CHANGE_NOTIFIER_FACTORY_H_ |
| 6 #define ANDROID_WEBVIEW_NET_AW_NETWORK_CHANGE_NOTIFIER_FACTORY_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_NET_AW_NETWORK_CHANGE_NOTIFIER_FACTORY_H_ |
| 7 | 7 |
| 8 #include "net/android/network_change_notifier_delegate_android.h" | 8 #include "net/android/network_change_notifier_delegate_android.h" |
| 9 #include "net/base/network_change_notifier_factory.h" | 9 #include "net/base/network_change_notifier_factory.h" |
| 10 | 10 |
| 11 namespace net { | 11 namespace net { |
| 12 class NetworkChangeNotifier; | 12 class NetworkChangeNotifier; |
| 13 class NetworkChangeNotifierDelegateAndroid; | 13 class NetworkChangeNotifierDelegateAndroid; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace android_webview { | 16 namespace android_webview { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 private: | 32 private: |
| 33 // Delegate passed to the instances created by this class. | 33 // Delegate passed to the instances created by this class. |
| 34 net::NetworkChangeNotifierDelegateAndroid delegate_; | 34 net::NetworkChangeNotifierDelegateAndroid delegate_; |
| 35 | 35 |
| 36 DISALLOW_COPY_AND_ASSIGN(AwNetworkChangeNotifierFactory); | 36 DISALLOW_COPY_AND_ASSIGN(AwNetworkChangeNotifierFactory); |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 } // namespace android_webview | 39 } // namespace android_webview |
| 40 | 40 |
| 41 #endif // ANDROID_WEBVIEW_NET_AW_NETWORK_CHANGE_NOTIFIER_FACTORY_H_ | 41 #endif // ANDROID_WEBVIEW_BROWSER_NET_AW_NETWORK_CHANGE_NOTIFIER_FACTORY_H_ |
| OLD | NEW |