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

Side by Side Diff: net/tools/flip_server/mem_cache.cc

Issue 14223008: net: Update the include paths of base/string_piece.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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/flip_server/balsa_headers_token_utils.h ('k') | net/tools/flip_server/split.h » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "net/tools/flip_server/mem_cache.h" 5 #include "net/tools/flip_server/mem_cache.h"
6 6
7 #include <dirent.h> 7 #include <dirent.h>
8 #include <errno.h> 8 #include <errno.h>
9 #include <fcntl.h> 9 #include <fcntl.h>
10 #include <stdio.h> 10 #include <stdio.h>
11 #include <sys/stat.h> 11 #include <sys/stat.h>
12 #include <sys/types.h> 12 #include <sys/types.h>
13 #include <unistd.h> 13 #include <unistd.h>
14 14
15 #include <deque> 15 #include <deque>
16 16
17 #include "base/string_piece.h" 17 #include "base/strings/string_piece.h"
18 #include "net/tools/dump_cache/url_to_filename_encoder.h" 18 #include "net/tools/dump_cache/url_to_filename_encoder.h"
19 #include "net/tools/dump_cache/url_utilities.h" 19 #include "net/tools/dump_cache/url_utilities.h"
20 #include "net/tools/flip_server/balsa_frame.h" 20 #include "net/tools/flip_server/balsa_frame.h"
21 #include "net/tools/flip_server/balsa_headers.h" 21 #include "net/tools/flip_server/balsa_headers.h"
22 22
23 // The directory where cache locates); 23 // The directory where cache locates);
24 std::string FLAGS_cache_base_dir = "."; 24 std::string FLAGS_cache_base_dir = ".";
25 25
26 namespace net { 26 namespace net {
27 27
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 mci->file_data = GetFileData(filename); 225 mci->file_data = GetFileData(filename);
226 if (mci->file_data == NULL) { 226 if (mci->file_data == NULL) {
227 LOG(ERROR) << "Could not find file data for " << filename; 227 LOG(ERROR) << "Could not find file data for " << filename;
228 return false; 228 return false;
229 } 229 }
230 return true; 230 return true;
231 } 231 }
232 232
233 } // namespace net 233 } // namespace net
234 234
OLDNEW
« no previous file with comments | « net/tools/flip_server/balsa_headers_token_utils.h ('k') | net/tools/flip_server/split.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698