Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 package org.chromium.chrome.browser.webapps; | |
| 6 | |
| 7 /** WebApkActivity subclass which does not request updates. */ | |
| 8 public class TestWebApkActivity extends WebApkActivity { | |
|
gone
2017/02/21 22:31:50
This should really be in the testing packages, not
pkotwicz
2017/02/24 23:49:55
Done.
| |
| 9 @Override | |
| 10 protected WebApkUpdateManager createUpdateManager() { | |
| 11 return null; | |
| 12 } | |
| 13 } | |
| OLD | NEW |