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

Side by Side Diff: Source/web/WebBlob.cpp

Issue 537403002: bindings: Renames from/toInternalPointer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 3 months 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/WebBindings.cpp ('k') | Source/web/WebDOMFileSystem.cpp » ('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) 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
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
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
OLDNEW
« no previous file with comments | « Source/web/WebBindings.cpp ('k') | Source/web/WebDOMFileSystem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698