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

Unified Diff: include/xml/SkDOM.h

Issue 2448593002: Remove SkAutoTUnref and SkAutoTDelete from public includes. (Closed)
Patch Set: And Vulcan. Created 4 years, 2 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 | « include/views/SkOSWindow_Win.h ('k') | src/core/SkCanvas.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/xml/SkDOM.h
diff --git a/include/xml/SkDOM.h b/include/xml/SkDOM.h
index b6f611af6e97de41fa3af4b9d4f8f4acae732394..c40f4bd522ef76fae3fa0e0a62b0d00a9416fd3e 100644
--- a/include/xml/SkDOM.h
+++ b/include/xml/SkDOM.h
@@ -89,9 +89,9 @@ public:
SkDEBUGCODE(void dump(const Node* node = NULL, int tabLevel = 0) const;)
private:
- SkChunkAlloc fAlloc;
- Node* fRoot;
- SkAutoTDelete<SkDOMParser> fParser;
+ SkChunkAlloc fAlloc;
+ Node* fRoot;
+ std::unique_ptr<SkDOMParser> fParser;
typedef SkNoncopyable INHERITED;
};
« no previous file with comments | « include/views/SkOSWindow_Win.h ('k') | src/core/SkCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698