| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 OwnPtr<BlobData> blobData = BlobData::create(); | 50 OwnPtr<BlobData> blobData = BlobData::create(); |
| 51 blobData->appendFile(path); | 51 blobData->appendFile(path); |
| 52 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData
.release(), size)); | 52 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData
.release(), size)); |
| 53 return WebBlob(blob); | 53 return WebBlob(blob); |
| 54 } | 54 } |
| 55 | 55 |
| 56 WebBlob WebBlob::fromV8Value(v8::Handle<v8::Value> value) | 56 WebBlob WebBlob::fromV8Value(v8::Handle<v8::Value> value) |
| 57 { | 57 { |
| 58 if (V8Blob::hasInstance(value, v8::Isolate::GetCurrent())) { | 58 if (V8Blob::hasInstance(value, v8::Isolate::GetCurrent())) { |
| 59 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(value); | 59 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(value); |
| 60 Blob* blob = V8Blob::toNative(object); | 60 Blob* blob = V8Blob::toImpl(object); |
| 61 ASSERT(blob); | 61 ASSERT(blob); |
| 62 return WebBlob(blob); | 62 return WebBlob(blob); |
| 63 } | 63 } |
| 64 return WebBlob(); | 64 return WebBlob(); |
| 65 } | 65 } |
| 66 | 66 |
| 67 void WebBlob::reset() | 67 void WebBlob::reset() |
| 68 { | 68 { |
| 69 m_private.reset(); | 69 m_private.reset(); |
| 70 } | 70 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 93 { | 93 { |
| 94 } | 94 } |
| 95 | 95 |
| 96 WebBlob& WebBlob::operator=(const PassRefPtrWillBeRawPtr<Blob>& blob) | 96 WebBlob& WebBlob::operator=(const PassRefPtrWillBeRawPtr<Blob>& blob) |
| 97 { | 97 { |
| 98 m_private = blob; | 98 m_private = blob; |
| 99 return *this; | 99 return *this; |
| 100 } | 100 } |
| 101 | 101 |
| 102 } // namespace blink | 102 } // namespace blink |
| OLD | NEW |