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

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

Issue 16652007: Use a direct include of strings headers in net/test/, net/third_party/, net/tools/, net/udp/, net/u… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/tools/dump_cache/dump_cache.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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <windows.h> 5 #include <windows.h>
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/string16.h" 9 #include "base/strings/string16.h"
10 10
11 // Creates a new server, and returns a new named pipe to communicate with it. 11 // Creates a new server, and returns a new named pipe to communicate with it.
12 HANDLE CreateServer(base::string16* pipe_number); 12 HANDLE CreateServer(base::string16* pipe_number);
13 13
14 // Runs a loop to write a new cache with all the data available from a slave 14 // Runs a loop to write a new cache with all the data available from a slave
15 // process connected through the provided |pipe|. 15 // process connected through the provided |pipe|.
16 int UpgradeCache(const base::FilePath& output_path, HANDLE pipe); 16 int UpgradeCache(const base::FilePath& output_path, HANDLE pipe);
17 17
18 // This process will only execute commands from the controller. 18 // This process will only execute commands from the controller.
19 int RunSlave(const base::FilePath& input_path, 19 int RunSlave(const base::FilePath& input_path,
20 const base::string16& pipe_number); 20 const base::string16& pipe_number);
OLDNEW
« no previous file with comments | « net/tools/dump_cache/dump_cache.cc ('k') | net/tools/dump_cache/upgrade_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698