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

Unified Diff: net/proxy/proxy_resolver_script_data.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 | « net/proxy/proxy_resolver_script_data.h ('k') | net/proxy/proxy_resolver_v8.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/proxy_resolver_script_data.cc
diff --git a/net/proxy/proxy_resolver_script_data.cc b/net/proxy/proxy_resolver_script_data.cc
deleted file mode 100644
index 8c4fd3187aed534f363717b46dee8c8b4c35a854..0000000000000000000000000000000000000000
--- a/net/proxy/proxy_resolver_script_data.cc
+++ /dev/null
@@ -1,76 +0,0 @@
-// Copyright (c) 2012 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 "net/proxy/proxy_resolver_script_data.h"
-
-#include "base/logging.h"
-#include "base/strings/utf_string_conversions.h"
-
-namespace net {
-
-// static
-scoped_refptr<ProxyResolverScriptData> ProxyResolverScriptData::FromUTF8(
- const std::string& utf8) {
- return new ProxyResolverScriptData(TYPE_SCRIPT_CONTENTS,
- GURL(),
- base::UTF8ToUTF16(utf8));
-}
-
-// static
-scoped_refptr<ProxyResolverScriptData> ProxyResolverScriptData::FromUTF16(
- const base::string16& utf16) {
- return new ProxyResolverScriptData(TYPE_SCRIPT_CONTENTS, GURL(), utf16);
-}
-
-// static
-scoped_refptr<ProxyResolverScriptData> ProxyResolverScriptData::FromURL(
- const GURL& url) {
- return new ProxyResolverScriptData(TYPE_SCRIPT_URL, url, base::string16());
-}
-
-// static
-scoped_refptr<ProxyResolverScriptData>
-ProxyResolverScriptData::ForAutoDetect() {
- return new ProxyResolverScriptData(TYPE_AUTO_DETECT, GURL(),
- base::string16());
-}
-
-const base::string16& ProxyResolverScriptData::utf16() const {
- DCHECK_EQ(TYPE_SCRIPT_CONTENTS, type_);
- return utf16_;
-}
-
-const GURL& ProxyResolverScriptData::url() const {
- DCHECK_EQ(TYPE_SCRIPT_URL, type_);
- return url_;
-}
-
-bool ProxyResolverScriptData::Equals(
- const ProxyResolverScriptData* other) const {
- if (type() != other->type())
- return false;
-
- switch (type()) {
- case TYPE_SCRIPT_CONTENTS:
- return utf16() == other->utf16();
- case TYPE_SCRIPT_URL:
- return url() == other->url();
- case TYPE_AUTO_DETECT:
- return true;
- }
-
- return false; // Shouldn't be reached.
-}
-
-ProxyResolverScriptData::ProxyResolverScriptData(Type type,
- const GURL& url,
- const base::string16& utf16)
- : type_(type),
- url_(url),
- utf16_(utf16) {
-}
-
-ProxyResolverScriptData::~ProxyResolverScriptData() {}
-
-} // namespace net
« no previous file with comments | « net/proxy/proxy_resolver_script_data.h ('k') | net/proxy/proxy_resolver_v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698