Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / net / tools / dump_cache / upgrade_win.h
blob8b45d845b838c8a2b616489e07443209e0d91364
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include <windows.h>
7 #include "base/command_line.h"
8 #include "base/files/file_path.h"
9 #include "base/strings/string16.h"
11 // Creates a new server, and returns a new named pipe to communicate with it.
12 HANDLE CreateServer(base::string16* pipe_number);
14 // Runs a loop to write a new cache with all the data available from a slave
15 // process connected through the provided |pipe|.
16 int UpgradeCache(const base::FilePath& output_path, HANDLE pipe);
18 // This process will only execute commands from the controller.
19 int RunSlave(const base::FilePath& input_path,
20 const base::string16& pipe_number);