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

Unified Diff: Source/web/WebDOMError.cpp

Issue 176853004: Oilpan: move core/fileapi to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WebBlob.cpp ('k') | Source/web/WebDragData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDOMError.cpp
diff --git a/Source/web/WebDOMError.cpp b/Source/web/WebDOMError.cpp
index 75f323fbc8189112de5e528ca3ec588e6079841f..5cbf70634771dbc0c1fd2cc693d42271bdedfd96 100644
--- a/Source/web/WebDOMError.cpp
+++ b/Source/web/WebDOMError.cpp
@@ -76,20 +76,15 @@ v8::Handle<v8::Value> WebDOMError::toV8Value()
return toV8(m_private.get(), v8::Handle<v8::Object>(), v8::Isolate::GetCurrent());
}
-WebDOMError::WebDOMError(const WTF::PassRefPtr<WebCore::DOMError>& error)
+WebDOMError::WebDOMError(const PassRefPtrWillBeRawPtr<WebCore::DOMError>& error)
: m_private(error)
{
}
-WebDOMError& WebDOMError::operator=(const WTF::PassRefPtr<WebCore::DOMError>& error)
+WebDOMError& WebDOMError::operator=(const PassRefPtrWillBeRawPtr<WebCore::DOMError>& error)
{
m_private = error;
return *this;
}
-WebDOMError::operator WTF::PassRefPtr<WebCore::DOMError>() const
-{
- return m_private.get();
-}
-
} // namespace blink
« no previous file with comments | « Source/web/WebBlob.cpp ('k') | Source/web/WebDragData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698