OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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 #include "chrome/android/testshell/chrome_data_reduction_proxy_testshell_android
.h" |
| 6 |
| 7 #include "net/http/http_network_session.h" |
| 8 |
| 9 ChromeDataReductionProxyAndroid* ChromeDataReductionProxyAndroid::Create() { |
| 10 return new ChromeDataReductionProxyTestShellAndroid(); |
| 11 } |
| 12 |
| 13 ChromeDataReductionProxyTestShellAndroid:: |
| 14 ChromeDataReductionProxyTestShellAndroid() { |
| 15 } |
| 16 |
| 17 ChromeDataReductionProxyTestShellAndroid:: |
| 18 ~ChromeDataReductionProxyTestShellAndroid() { |
| 19 } |
| 20 |
| 21 void ChromeDataReductionProxyTestShellAndroid::Init() { |
| 22 } |
OLD | NEW |