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

Side by Side Diff: third_party/WebKit/Source/web/WebDOMFileSystem.cpp

Issue 2867073005: Provide downcasts for WebLocalFrameBase using DEFINE_TYPE_CASTS macro. (Closed)
Patch Set: Created 3 years, 7 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
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 16 matching lines...) Expand all
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "public/web/WebDOMFileSystem.h" 31 #include "public/web/WebDOMFileSystem.h"
32 32
33 #include "bindings/modules/v8/V8DOMFileSystem.h" 33 #include "bindings/modules/v8/V8DOMFileSystem.h"
34 #include "bindings/modules/v8/V8DirectoryEntry.h" 34 #include "bindings/modules/v8/V8DirectoryEntry.h"
35 #include "bindings/modules/v8/V8FileEntry.h" 35 #include "bindings/modules/v8/V8FileEntry.h"
36 #include "core/dom/Document.h" 36 #include "core/dom/Document.h"
37 #include "core/frame/LocalFrame.h"
38 #include "core/frame/WebLocalFrameBase.h"
37 #include "modules/filesystem/DOMFileSystem.h" 39 #include "modules/filesystem/DOMFileSystem.h"
38 #include "modules/filesystem/DirectoryEntry.h" 40 #include "modules/filesystem/DirectoryEntry.h"
39 #include "modules/filesystem/FileEntry.h" 41 #include "modules/filesystem/FileEntry.h"
40 #include "platform/bindings/WrapperTypeInfo.h" 42 #include "platform/bindings/WrapperTypeInfo.h"
41 #include "v8/include/v8.h" 43 #include "v8/include/v8.h"
42 #include "web/WebLocalFrameImpl.h"
43 44
44 namespace blink { 45 namespace blink {
45 46
46 WebDOMFileSystem WebDOMFileSystem::FromV8Value(v8::Local<v8::Value> value) { 47 WebDOMFileSystem WebDOMFileSystem::FromV8Value(v8::Local<v8::Value> value) {
47 if (!V8DOMFileSystem::hasInstance(value, v8::Isolate::GetCurrent())) 48 if (!V8DOMFileSystem::hasInstance(value, v8::Isolate::GetCurrent()))
48 return WebDOMFileSystem(); 49 return WebDOMFileSystem();
49 v8::Local<v8::Object> object = v8::Local<v8::Object>::Cast(value); 50 v8::Local<v8::Object> object = v8::Local<v8::Object>::Cast(value);
50 DOMFileSystem* dom_file_system = V8DOMFileSystem::toImpl(object); 51 DOMFileSystem* dom_file_system = V8DOMFileSystem::toImpl(object);
51 DCHECK(dom_file_system); 52 DCHECK(dom_file_system);
52 return WebDOMFileSystem(dom_file_system); 53 return WebDOMFileSystem(dom_file_system);
53 } 54 }
54 55
55 WebURL WebDOMFileSystem::CreateFileSystemURL(v8::Local<v8::Value> value) { 56 WebURL WebDOMFileSystem::CreateFileSystemURL(v8::Local<v8::Value> value) {
56 const Entry* const entry = 57 const Entry* const entry =
57 V8Entry::toImplWithTypeCheck(v8::Isolate::GetCurrent(), value); 58 V8Entry::toImplWithTypeCheck(v8::Isolate::GetCurrent(), value);
58 if (entry) 59 if (entry)
59 return entry->filesystem()->CreateFileSystemURL(entry); 60 return entry->filesystem()->CreateFileSystemURL(entry);
60 return WebURL(); 61 return WebURL();
61 } 62 }
62 63
63 WebDOMFileSystem WebDOMFileSystem::Create(WebLocalFrame* frame, 64 WebDOMFileSystem WebDOMFileSystem::Create(WebLocalFrame* frame,
64 WebFileSystemType type, 65 WebFileSystemType type,
65 const WebString& name, 66 const WebString& name,
66 const WebURL& root_url, 67 const WebURL& root_url,
67 SerializableType serializable_type) { 68 SerializableType serializable_type) {
68 DCHECK(frame); 69 DCHECK(frame);
69 DCHECK(ToWebLocalFrameImpl(frame)->GetFrame()); 70 DCHECK(ToWebLocalFrameBase(frame)->GetFrame());
70 DOMFileSystem* dom_file_system = DOMFileSystem::Create( 71 DOMFileSystem* dom_file_system = DOMFileSystem::Create(
71 ToWebLocalFrameImpl(frame)->GetFrame()->GetDocument(), name, 72 ToWebLocalFrameBase(frame)->GetFrame()->GetDocument(), name,
72 static_cast<FileSystemType>(type), root_url); 73 static_cast<FileSystemType>(type), root_url);
73 if (serializable_type == kSerializableTypeSerializable) 74 if (serializable_type == kSerializableTypeSerializable)
74 dom_file_system->MakeClonable(); 75 dom_file_system->MakeClonable();
75 return WebDOMFileSystem(dom_file_system); 76 return WebDOMFileSystem(dom_file_system);
76 } 77 }
77 78
78 void WebDOMFileSystem::Reset() { 79 void WebDOMFileSystem::Reset() {
79 private_.Reset(); 80 private_.Reset();
80 } 81 }
81 82
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 142
142 WebDOMFileSystem::WebDOMFileSystem(DOMFileSystem* dom_file_system) 143 WebDOMFileSystem::WebDOMFileSystem(DOMFileSystem* dom_file_system)
143 : private_(dom_file_system) {} 144 : private_(dom_file_system) {}
144 145
145 WebDOMFileSystem& WebDOMFileSystem::operator=(DOMFileSystem* dom_file_system) { 146 WebDOMFileSystem& WebDOMFileSystem::operator=(DOMFileSystem* dom_file_system) {
146 private_ = dom_file_system; 147 private_ = dom_file_system;
147 return *this; 148 return *this;
148 } 149 }
149 150
150 } // namespace blink 151 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/WebLocalFrameBase.h ('k') | third_party/WebKit/Source/web/WebFrameContentDumper.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698