| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "ios/public/provider/chrome/browser/test_chrome_browser_provider.h" | 5 #include "ios/public/provider/chrome/browser/test_chrome_browser_provider.h" |
| 6 | 6 |
| 7 #import <UIKit/UIKit.h> | 7 #import <UIKit/UIKit.h> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 AppDistributionProvider* TestChromeBrowserProvider::GetAppDistributionProvider() | 79 AppDistributionProvider* TestChromeBrowserProvider::GetAppDistributionProvider() |
| 80 const { | 80 const { |
| 81 return app_distribution_provider_.get(); | 81 return app_distribution_provider_.get(); |
| 82 } | 82 } |
| 83 | 83 |
| 84 OmahaServiceProvider* TestChromeBrowserProvider::GetOmahaServiceProvider() | 84 OmahaServiceProvider* TestChromeBrowserProvider::GetOmahaServiceProvider() |
| 85 const { | 85 const { |
| 86 return omaha_service_provider_.get(); | 86 return omaha_service_provider_.get(); |
| 87 } | 87 } |
| 88 | 88 |
| 89 id<NativeAppWhitelistManager> |
| 90 TestChromeBrowserProvider::GetNativeAppWhitelistManager() const { |
| 91 return nil; |
| 92 } |
| 93 |
| 89 } // namespace ios | 94 } // namespace ios |
| OLD | NEW |