OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |