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

Unified Diff: chrome/tools/pbl_tool/pbl_tool.cc

Issue 337025: Design changes in browser/privacy_blacklist needed to integrate (Closed)
Patch Set: fixes Created 11 years, 2 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 | « chrome/tools/pbl_tool/DEPS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/pbl_tool/pbl_tool.cc
diff --git a/chrome/tools/pbl_tool/pbl_tool.cc b/chrome/tools/pbl_tool/pbl_tool.cc
deleted file mode 100644
index 80deaa2b0c562ccc50c2cc0482255680f501b612..0000000000000000000000000000000000000000
--- a/chrome/tools/pbl_tool/pbl_tool.cc
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright (c) 2009 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.
-
-// This tool manages privacy blacklists. Primarily for loading a text
-// blacklist into the binary aggregate blacklist.
-#include <iostream>
-
-#include "base/process_util.h"
-#include "base/string_util.h"
-#include "chrome/browser/privacy_blacklist/blacklist.h"
-#include "chrome/browser/privacy_blacklist/blacklist_io.h"
-
-#ifdef OS_POSIX
-#define ICHAR char
-#define ICERR std::cerr
-#define IMAIN main
-#else
-#define ICHAR wchar_t
-#define ICERR std::wcerr
-#define IMAIN wmain
-#endif
-
-namespace {
-
-int PrintUsage(int argc, ICHAR* argv[]) {
- ICERR << "Usage: " << argv[0] << " <source>... <target>\n"
- " <source> are text blacklists (.pbl) to load.\n"
- " <target> is the binary output blacklist repository.\n\n"
- "Adds all entries from <source> to <target>.\n"
- "Creates <target> if it does not exist.\n";
- return 1;
-}
-
-}
-
-int IMAIN(int argc, ICHAR* argv[]) {
- base::EnableTerminationOnHeapCorruption();
-
- if (argc < 3)
- return PrintUsage(argc, argv);
-
- BlacklistIO io;
- for (int current = 1; current < argc-1; ++current) {
- FilePath input(argv[current]);
- if (!io.Read(input)) {
- ICERR << "Error reading " << argv[current] << ":\n"
- << io.last_error() << "\n";
- return -1;
- }
- }
-
- FilePath output(argv[argc-1]);
- if (!io.Write(output))
- ICERR << "Error writing " << argv[2] << ":\n" << io.last_error() << "\n";
-
- return 0;
-}
« no previous file with comments | « chrome/tools/pbl_tool/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698