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

Side by Side Diff: storage/browser/fileapi/isolated_context.cc

Issue 1139323003: Discard duplicate includes of files from storage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Review Comments Created 5 years, 7 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
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 "storage/browser/fileapi/isolated_context.h" 5 #include "storage/browser/fileapi/isolated_context.h"
6 6
7 #include "base/basictypes.h"
8 #include "base/files/file_path.h"
9 #include "base/logging.h" 7 #include "base/logging.h"
10 #include "base/rand_util.h" 8 #include "base/rand_util.h"
11 #include "base/stl_util.h" 9 #include "base/stl_util.h"
12 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
13 #include "base/strings/string_util.h" 11 #include "base/strings/string_util.h"
14 #include "base/strings/stringprintf.h" 12 #include "base/strings/stringprintf.h"
15 #include "storage/browser/fileapi/file_system_url.h" 13 #include "storage/browser/fileapi/file_system_url.h"
16 14
17 namespace storage { 15 namespace storage {
18 16
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 uint32 random_data[4]; 473 uint32 random_data[4];
476 std::string id; 474 std::string id;
477 do { 475 do {
478 base::RandBytes(random_data, sizeof(random_data)); 476 base::RandBytes(random_data, sizeof(random_data));
479 id = base::HexEncode(random_data, sizeof(random_data)); 477 id = base::HexEncode(random_data, sizeof(random_data));
480 } while (instance_map_.find(id) != instance_map_.end()); 478 } while (instance_map_.find(id) != instance_map_.end());
481 return id; 479 return id;
482 } 480 }
483 481
484 } // namespace storage 482 } // namespace storage
OLDNEW
« no previous file with comments | « storage/browser/fileapi/file_system_usage_cache.cc ('k') | storage/browser/fileapi/local_file_stream_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698