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

Unified Diff: chrome/browser/about_flags.cc

Issue 14398005: Remove data reduction proxy from about:flags (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed unnecessary includes Created 7 years, 8 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/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index d26d1bae119f4994030e48d371cadae2d8bcf3b6..712dad4524583a5d3ccfd1984bf48a56c71330b5 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -4,8 +4,6 @@
#include "chrome/browser/about_flags.h"
-#include <string.h>
-
#include <algorithm>
#include <iterator>
#include <map>
@@ -22,7 +20,6 @@
#include "chrome/browser/prefs/scoped_user_pref_update.h"
#include "chrome/common/chrome_content_client.h"
#include "chrome/common/chrome_switches.h"
-#include "chrome/common/chrome_version_info.h"
#include "chrome/common/pref_names.h"
#include "content/public/browser/user_metrics.h"
#include "grit/chromium_strings.h"
@@ -254,15 +251,6 @@ const Experiment::Choice kSimpleCacheBackendChoices[] = {
//
// When adding a new choice, add it to the end of the list.
const Experiment kExperiments[] = {
-#if defined(OS_ANDROID)
- {
- "enable-spdy-proxy-auth",
- IDS_FLAGS_ENABLE_SPDY_PROXY_AUTH_NAME,
- IDS_FLAGS_ENABLE_SPDY_PROXY_AUTH_DESCRIPTION,
- kOsAndroid,
- SINGLE_VALUE_TYPE(switches::kEnableSpdyProxyAuth)
- },
-#endif
{
"expose-for-tabs", // FLAGS:RECORD_UMA
IDS_FLAGS_TABPOSE_NAME,
@@ -1599,15 +1587,6 @@ ListValue* GetFlagsExperimentsData(PrefService* prefs, FlagAccess access) {
for (size_t i = 0; i < num_experiments; ++i) {
const Experiment& experiment = experiments[i];
-#if defined(OS_ANDROID)
- // Special case enable-spdy-proxy-auth, because it should only
- // be available on Dev and Beta channels.
- if (!strcmp("enable-spdy-proxy-auth", experiment.internal_name) &&
- chrome::VersionInfo::GetChannel() ==
- chrome::VersionInfo::CHANNEL_STABLE)
- continue;
-#endif
-
DictionaryValue* data = new DictionaryValue();
data->SetString("internal_name", experiment.internal_name);
data->SetString("name",
« 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