summaryrefslogtreecommitdiffstats
path: root/chrome/tools/pbl_tool/pbl_tool.cc
blob: 76d18de115bd80d4935b31f4909d4ee71f7ca898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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 agregate blacklist.
#include <iostream>

#include "base/process_util.h"
#include "chrome/browser/privacy_blacklist/blacklist.h"
#include "chrome/browser/privacy_blacklist/blacklist_io.h"

int main(int argc, char* argv[]) {
  base::EnableTerminationOnHeapCorruption();
  std::cout << "Aw, Snap! This is not implemented yet." << std::endl;
  CHECK(std::string() == Blacklist::StripCookies(std::string()));
}