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

Unified Diff: third_party/WebKit/Source/modules/speech/SpeechRecognitionError.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/modules/speech/SpeechRecognitionError.h
diff --git a/third_party/WebKit/Source/modules/speech/SpeechRecognitionError.h b/third_party/WebKit/Source/modules/speech/SpeechRecognitionError.h
index dd8ae016e53af680d96ae6f6ea0780eac69522c1..17d9a002a9e1c80b8ba9f2092be13e0d29ecf9e5 100644
--- a/third_party/WebKit/Source/modules/speech/SpeechRecognitionError.h
+++ b/third_party/WebKit/Source/modules/speech/SpeechRecognitionError.h
@@ -50,9 +50,9 @@ public:
ErrorCodeLanguageNotSupported = 8
};
- static PassRefPtrWillBeRawPtr<SpeechRecognitionError> create(ErrorCode, const String&);
- static PassRefPtrWillBeRawPtr<SpeechRecognitionError> create();
- static PassRefPtrWillBeRawPtr<SpeechRecognitionError> create(const AtomicString&, const SpeechRecognitionErrorInit&);
+ static RawPtr<SpeechRecognitionError> create(ErrorCode, const String&);
+ static RawPtr<SpeechRecognitionError> create();
+ static RawPtr<SpeechRecognitionError> create(const AtomicString&, const SpeechRecognitionErrorInit&);
const String& error() { return m_error; }
const String& message() { return m_message; }

Powered by Google App Engine
This is Rietveld 408576698