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

Unified Diff: Source/modules/geofencing/GeofencingError.cpp

Issue 1107793002: Oilpan: have DOMException be on the heap by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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/modules/geofencing/GeofencingError.h ('k') | Source/modules/presentation/PresentationError.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/geofencing/GeofencingError.cpp
diff --git a/Source/modules/geofencing/GeofencingError.cpp b/Source/modules/geofencing/GeofencingError.cpp
index 7accf339b1b07a758894c616de0afb7621727594..7c209d2c75bf773414c75c339fe7e0ea865712f4 100644
--- a/Source/modules/geofencing/GeofencingError.cpp
+++ b/Source/modules/geofencing/GeofencingError.cpp
@@ -5,12 +5,13 @@
#include "config.h"
#include "modules/geofencing/GeofencingError.h"
+#include "core/dom/DOMException.h"
#include "core/dom/ExceptionCode.h"
#include "wtf/OwnPtr.h"
namespace blink {
-PassRefPtrWillBeRawPtr<DOMException> GeofencingError::take(ScriptPromiseResolver*, WebType* webErrorRaw)
+DOMException* GeofencingError::take(ScriptPromiseResolver*, WebType* webErrorRaw)
{
OwnPtr<WebType> webError = adoptPtr(webErrorRaw);
switch (webError->errorType) {
« no previous file with comments | « Source/modules/geofencing/GeofencingError.h ('k') | Source/modules/presentation/PresentationError.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698