Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Side by Side Diff: chrome/android/javatests/src/org/chromium/chrome/browser/services/GoogleServicesManagerIntegrationTest.java

Issue 1141283003: Upstream oodles of Chrome for Android code into Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: final patch? Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 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.services;
6
7 import android.test.UiThreadTest;
8
9 import org.chromium.base.test.util.DisabledTest;
10 import org.chromium.chrome.browser.ChromeActivity;
11 import org.chromium.chrome.test.ChromeActivityTestCaseBase;
12
13 public class GoogleServicesManagerIntegrationTest
14 extends ChromeActivityTestCaseBase<ChromeActivity> {
15
16 public GoogleServicesManagerIntegrationTest() {
17 super(ChromeActivity.class);
18 }
19
20 /**
21 * Test changing the state of auto login
22 * Bug: crbug.com/413289
23 * @Smoke
24 * @SmallTest
25 * @Feature({"Sync", "Main"})
26 */
27 @DisabledTest
28 @UiThreadTest
29 public void testSetAutologinState() {
30 // TODO(acleung): Add back some sort of test for the GSM.
31 }
32
33 @Override
34 public void startMainActivity() throws InterruptedException {
35 startMainActivityOnBlankPage();
36 }
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698