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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/FieldTrialHelper.java

Issue 378403002: Remove deprecated FieldTrialHelper. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/src/org/chromium/chrome/browser/FieldTrialHelper.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/FieldTrialHelper.java b/chrome/android/java/src/org/chromium/chrome/browser/FieldTrialHelper.java
deleted file mode 100644
index 328ba53543b19b076ae602dec538ccb410cca30f..0000000000000000000000000000000000000000
--- a/chrome/android/java/src/org/chromium/chrome/browser/FieldTrialHelper.java
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package org.chromium.chrome.browser;
-
-import org.chromium.base.FieldTrialList;
-
-/**
- * Helper to get field trial information.
- */
-public class FieldTrialHelper {
-
- private FieldTrialHelper() {}
-
- /**
- * This function has been moved to base so it can be used by //sync.
- * Please use {@link FieldTrialList#findFullName()} instead.
- * See http://crbug.com/378035 for context.
- *
- * @param trialName The name of the trial to get the group for.
- * @return The group name chosen for the named trial, or the empty string if the trial does
- * not exist.
- */
- @Deprecated
- public static String getFieldTrialFullName(String trialName) {
- return FieldTrialList.findFullName(trialName);
- }
-}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698