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

Unified Diff: chrome/app/file_pre_reader_win.h

Issue 1411683010: Revert of Transform ImagePreReader into PreReadFile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a_get_module_path
Patch Set: Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/BUILD.gn ('k') | chrome/app/file_pre_reader_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/file_pre_reader_win.h
diff --git a/chrome/app/file_pre_reader_win.h b/chrome/app/file_pre_reader_win.h
deleted file mode 100644
index 4ca0a1f9f7ed37c44bc429465102934c4cd033bb..0000000000000000000000000000000000000000
--- a/chrome/app/file_pre_reader_win.h
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// This file defines a function to pre-read a file in order to avoid touching
-// the disk when it is subsequently used.
-
-#ifndef CHROME_APP_FILE_PRE_READER_WIN_H_
-#define CHROME_APP_FILE_PRE_READER_WIN_H_
-
-namespace base {
-class FilePath;
-}
-
-// Reads |file_path| to avoid touching the disk when the file is actually used.
-// The function checks the Windows version to determine which pre-reading
-// mechanism to use. On Vista+, chunks of |step_size| bytes are read into a
-// buffer. The bigger |step_size| is, the faster the file is pre-read (up to
-// about 4MB according to local tests), but also the more memory is allocated
-// for the buffer.
-bool PreReadFile(const base::FilePath& file_path, int step_size);
-
-#endif // CHROME_APP_FILE_PRE_READER_WIN_H_
« no previous file with comments | « chrome/BUILD.gn ('k') | chrome/app/file_pre_reader_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698