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

Side by Side Diff: net/tools/dump_cache/upgrade_win.h

Issue 11299239: Adding a simple class for dumping the contents of a cache. Use this new class in dump_cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/tools/dump_cache/upgrade.cc ('k') | net/tools/dump_cache/upgrade_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #include <windows.h>
6
7 #include "base/command_line.h"
8 #include "base/file_path.h"
9
10 // Creates a new server, and returns a new named pipe to communicate with it.
11 HANDLE CreateServer(std::wstring* pipe_number);
12
13 // This is the controller process for an upgrade operation.
14 int CopyCache(const FilePath& output_path, HANDLE pipe, bool copy_to_text);
15
16 // This process will only execute commands from the controller.
17 int RunSlave(const FilePath& input_path, const std::wstring& pipe_number);
18
19 // Starts a new process, to generate the files.
20 int LaunchSlave(CommandLine command_line,
21 const std::wstring& pipe_number,
22 int version);
OLDNEW
« no previous file with comments | « net/tools/dump_cache/upgrade.cc ('k') | net/tools/dump_cache/upgrade_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698