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

Unified Diff: components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser.cc

Issue 2025443002: Refactoring data reduction proxy some methods to common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing nits Created 4 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 side-by-side diff with in-line comments
Download patch
Index: components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser.cc
diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser.cc b/components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser.cc
deleted file mode 100644
index 0cfb0e81c335ace5a6a4af03392d2b5573a50072..0000000000000000000000000000000000000000
--- a/components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser.cc
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright 2015 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.
-
-#include "components/data_reduction_proxy/core/common/data_reduction_proxy_client_config_parser.h"
-
-#include "base/time/time.h"
-
-namespace data_reduction_proxy {
-
-namespace config_parser {
-
-net::ProxyServer::Scheme SchemeFromProxyScheme(
- ProxyServer_ProxyScheme proxy_scheme) {
- switch (proxy_scheme) {
- case ProxyServer_ProxyScheme_HTTP:
- return net::ProxyServer::SCHEME_HTTP;
- case ProxyServer_ProxyScheme_HTTPS:
- return net::ProxyServer::SCHEME_HTTPS;
- case ProxyServer_ProxyScheme_QUIC:
- return net::ProxyServer::SCHEME_QUIC;
- default:
- return net::ProxyServer::SCHEME_INVALID;
- }
-}
-
-ProxyServer_ProxyScheme ProxySchemeFromScheme(net::ProxyServer::Scheme scheme) {
- switch (scheme) {
- case net::ProxyServer::SCHEME_HTTP:
- return ProxyServer_ProxyScheme_HTTP;
- case net::ProxyServer::SCHEME_HTTPS:
- return ProxyServer_ProxyScheme_HTTPS;
- case net::ProxyServer::SCHEME_QUIC:
- return ProxyServer_ProxyScheme_QUIC;
- default:
- return ProxyServer_ProxyScheme_UNSPECIFIED;
- }
-}
-
-void TimeDeltatoDuration(const base::TimeDelta& time_delta,
- Duration* duration) {
- duration->set_seconds(time_delta.InSeconds());
- // Discard fractional seconds; it isn't worth the code effort to
- // calculate it.
- duration->set_nanos(0);
-}
-
-base::TimeDelta DurationToTimeDelta(const Duration& duration) {
- return base::TimeDelta::FromSeconds(duration.seconds()) +
- base::TimeDelta::FromMicroseconds(
- duration.nanos() / base::Time::kNanosecondsPerMicrosecond);
-}
-
-} // namespace config_parser
-
-} // namespace data_reduction_proxy

Powered by Google App Engine
This is Rietveld 408576698