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

Unified Diff: Source/bindings/tests/results/core/UnionTypesCore.h

Issue 727523002: IDL: Use raw pointers instead of RawPtr<> for rvalue types (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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/bindings/tests/results/core/UnionTypesCore.h
diff --git a/Source/bindings/tests/results/core/UnionTypesCore.h b/Source/bindings/tests/results/core/UnionTypesCore.h
index 6ece485d80978f7a3afa275ccaabeca0984c0784..ff81415d6658e8db8832793df19b09982b096e7d 100644
--- a/Source/bindings/tests/results/core/UnionTypesCore.h
+++ b/Source/bindings/tests/results/core/UnionTypesCore.h
@@ -327,8 +327,8 @@ public:
bool isNull() const { return m_type == SpecificTypeNone; }
bool isTestInterfaceGarbageCollected() const { return m_type == SpecificTypeTestInterfaceGarbageCollected; }
- RawPtr<TestInterfaceGarbageCollected> getAsTestInterfaceGarbageCollected() const;
- void setTestInterfaceGarbageCollected(RawPtr<TestInterfaceGarbageCollected>);
+ TestInterfaceGarbageCollected* getAsTestInterfaceGarbageCollected() const;
+ void setTestInterfaceGarbageCollected(TestInterfaceGarbageCollected*);
bool isString() const { return m_type == SpecificTypeString; }
String getAsString() const;
« no previous file with comments | « Source/bindings/tests/results/core/TestDictionary.h ('k') | Source/bindings/tests/results/core/UnionTypesCore.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698