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

Side by Side Diff: Source/core/streams/Stream.cpp

Issue 747323007: Introduce Stream::flush [1/2 blink] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « Source/core/streams/Stream.h ('k') | Source/platform/blob/BlobRegistry.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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 } 49 }
50 50
51 void Stream::addData(const char* data, size_t len) 51 void Stream::addData(const char* data, size_t len)
52 { 52 {
53 RefPtr<RawData> buffer(RawData::create()); 53 RefPtr<RawData> buffer(RawData::create());
54 buffer->mutableData()->resize(len); 54 buffer->mutableData()->resize(len);
55 memcpy(buffer->mutableData()->data(), data, len); 55 memcpy(buffer->mutableData()->data(), data, len);
56 BlobRegistry::addDataToStream(m_internalURL, buffer); 56 BlobRegistry::addDataToStream(m_internalURL, buffer);
57 } 57 }
58 58
59 void Stream::flush()
60 {
61 BlobRegistry::flushStream(m_internalURL);
62 }
63
59 void Stream::finalize() 64 void Stream::finalize()
60 { 65 {
61 BlobRegistry::finalizeStream(m_internalURL); 66 BlobRegistry::finalizeStream(m_internalURL);
62 } 67 }
63 68
64 void Stream::abort() 69 void Stream::abort()
65 { 70 {
66 BlobRegistry::abortStream(m_internalURL); 71 BlobRegistry::abortStream(m_internalURL);
67 } 72 }
68 73
(...skipping 10 matching lines...) Expand all
79 { 84 {
80 } 85 }
81 86
82 void Stream::stop() 87 void Stream::stop()
83 { 88 {
84 neuter(); 89 neuter();
85 abort(); 90 abort();
86 } 91 }
87 92
88 } // namespace blink 93 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/streams/Stream.h ('k') | Source/platform/blob/BlobRegistry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698