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

Unified Diff: chrome/browser/safe_browsing/local_safebrowsing_test_server.cc

Issue 2108313002: Remove the Pver3 safe_browsing_test server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update a few files I missed Created 4 years, 6 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: chrome/browser/safe_browsing/local_safebrowsing_test_server.cc
diff --git a/chrome/browser/safe_browsing/local_safebrowsing_test_server.cc b/chrome/browser/safe_browsing/local_safebrowsing_test_server.cc
deleted file mode 100644
index 30928ceb54e353b1de248d3a8f3873d62e87e74d..0000000000000000000000000000000000000000
--- a/chrome/browser/safe_browsing/local_safebrowsing_test_server.cc
+++ /dev/null
@@ -1,64 +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 "chrome/browser/safe_browsing/local_safebrowsing_test_server.h"
-
-#include "base/command_line.h"
-#include "base/path_service.h"
-#include "base/strings/string_number_conversions.h"
-#include "base/values.h"
-#include "chrome/common/chrome_paths.h"
-#include "net/test/python_utils.h"
-#include "net/test/spawned_test_server/spawned_test_server.h"
-
-namespace safe_browsing {
-
-LocalSafeBrowsingTestServer::LocalSafeBrowsingTestServer(
- const base::FilePath& data_file)
- : net::LocalTestServer(net::SpawnedTestServer::TYPE_HTTP,
- net::SpawnedTestServer::kLocalhost,
- base::FilePath()),
- data_file_(data_file) {
-}
-
-LocalSafeBrowsingTestServer::~LocalSafeBrowsingTestServer() {}
-
-bool LocalSafeBrowsingTestServer::GetTestServerPath(
- base::FilePath* testserver_path) const {
- base::FilePath testserver_dir;
- if (!PathService::Get(chrome::DIR_TEST_DATA, &testserver_dir)) {
- LOG(ERROR) << "Failed to get DIR_SOURCE_ROOT";
- return false;
- }
-
- testserver_dir = testserver_dir
- .Append(FILE_PATH_LITERAL("safe_browsing"));
-
- *testserver_path = testserver_dir.Append(FILE_PATH_LITERAL(
- "safe_browsing_testserver.py"));
- return true;
-}
-
-bool LocalSafeBrowsingTestServer::SetPythonPath() const {
- if (!net::LocalTestServer::SetPythonPath())
- return false;
-
- // Locate the Python code generated by the protocol buffers compiler.
- base::FilePath pyproto_dir;
- if (!GetPyProtoPath(&pyproto_dir)) {
- LOG(ERROR) << "Cannot find pyproto dir for generated code.";
- return false;
- }
-
- AppendToPythonPath(pyproto_dir.AppendASCII("google"));
- return true;
-}
-
-bool LocalSafeBrowsingTestServer::GenerateAdditionalArguments(
- base::DictionaryValue* arguments) const {
- arguments->SetString("data-file", data_file_.value());
- return true;
-}
-
-} // namespace safe_browsing
« no previous file with comments | « chrome/browser/safe_browsing/local_safebrowsing_test_server.h ('k') | chrome/browser/safe_browsing/safe_browsing_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698