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

Unified Diff: Source/core/dom/Range.h

Issue 1104243003: Oilpan: put ClientRect(List) on the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove transition types uses also 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
Index: Source/core/dom/Range.h
diff --git a/Source/core/dom/Range.h b/Source/core/dom/Range.h
index 49a5e33e04ae3582a9a6d44fd2ba304650174415..4530f52e6006462f9530906fbdb6ff83397d87f4 100644
--- a/Source/core/dom/Range.h
+++ b/Source/core/dom/Range.h
@@ -151,8 +151,8 @@ public:
// for details.
void expand(const String&, ExceptionState&);
- PassRefPtrWillBeRawPtr<ClientRectList> getClientRects() const;
- PassRefPtrWillBeRawPtr<ClientRect> getBoundingClientRect() const;
+ ClientRectList* getClientRects() const;
+ ClientRect* getBoundingClientRect() const;
#ifndef NDEBUG
void formatForDebugger(char* buffer, unsigned length) const;

Powered by Google App Engine
This is Rietveld 408576698