summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sessions/session_backend.cc
diff options
context:
space:
mode:
authorsatorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-15 04:08:41 +0000
committersatorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-15 04:08:41 +0000
commit6b230f4db95ebe798a6cec0045322e562065aef5 (patch)
treefedc9447bfb327132682cdafe95451bf86764bd1 /chrome/browser/sessions/session_backend.cc
parent9f5dd1d37b5b0496fc4815f7c0c4b84a9f606985 (diff)
downloadchromium_src-6b230f4db95ebe798a6cec0045322e562065aef5.zip
chromium_src-6b230f4db95ebe798a6cec0045322e562065aef5.tar.gz
chromium_src-6b230f4db95ebe798a6cec0045322e562065aef5.tar.bz2
net: Split FileStream::Read/Write() into sync and async versions.
Historically, FileStream::Read/Write() used to take NULL for synchronous operations, but these are replaced with ComplocationCallback(), which is rather ugly. ReadSync() and WriteSync() which do not take a CompletionCallback are introduced for synchronous operations. Having function separate signatures make clients code cleaner, and easier to catch synchronous operations on wrong threads. This convention also matches with Open/OpenSync and Close/CloseSync. BUG=72001 TEST=try bots. Review URL: https://chromiumcodereview.appspot.com/9365024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122031 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sessions/session_backend.cc')
-rw-r--r--chrome/browser/sessions/session_backend.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/chrome/browser/sessions/session_backend.cc b/chrome/browser/sessions/session_backend.cc
index 419678e..8a17036 100644
--- a/chrome/browser/sessions/session_backend.cc
+++ b/chrome/browser/sessions/session_backend.cc
@@ -318,22 +318,22 @@ bool SessionBackend::AppendCommandsToFile(net::FileStream* file,
UMA_HISTOGRAM_COUNTS("TabRestore.command_size", total_size);
else
UMA_HISTOGRAM_COUNTS("SessionRestore.command_size", total_size);
- wrote = file->Write(reinterpret_cast<const char*>(&total_size),
- sizeof(total_size), net::CompletionCallback());
+ wrote = file->WriteSync(reinterpret_cast<const char*>(&total_size),
+ sizeof(total_size));
if (wrote != sizeof(total_size)) {
NOTREACHED() << "error writing";
return false;
}
id_type command_id = (*i)->id();
- wrote = file->Write(reinterpret_cast<char*>(&command_id),
- sizeof(command_id), net::CompletionCallback());
+ wrote = file->WriteSync(reinterpret_cast<char*>(&command_id),
+ sizeof(command_id));
if (wrote != sizeof(command_id)) {
NOTREACHED() << "error writing";
return false;
}
if (content_size > 0) {
- wrote = file->Write(reinterpret_cast<char*>((*i)->contents()),
- content_size, net::CompletionCallback());
+ wrote = file->WriteSync(reinterpret_cast<char*>((*i)->contents()),
+ content_size);
if (wrote != content_size) {
NOTREACHED() << "error writing";
return false;
@@ -378,8 +378,8 @@ net::FileStream* SessionBackend::OpenAndWriteHeader(const FilePath& path) {
FileHeader header;
header.signature = kFileSignature;
header.version = kFileCurrentVersion;
- int wrote = file->Write(reinterpret_cast<char*>(&header),
- sizeof(header), net::CompletionCallback());
+ int wrote = file->WriteSync(reinterpret_cast<char*>(&header),
+ sizeof(header));
if (wrote != sizeof(header))
return NULL;
return file.release();