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

Unified Diff: Source/platform/text/TextCheckerClient.h

Issue 517043003: Move Frame to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Back out non-Oilpan experiment + tidy up by adding frame() ref accessors Created 6 years, 3 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/platform/text/TextCheckerClient.h
diff --git a/Source/platform/text/TextCheckerClient.h b/Source/platform/text/TextCheckerClient.h
index 7e4b46b3c19f2a78e532e3dc21a74fa875fd082a..3ebe91c804ae6670b89909f9a03cd2bd07d5f77b 100644
--- a/Source/platform/text/TextCheckerClient.h
+++ b/Source/platform/text/TextCheckerClient.h
@@ -44,7 +44,7 @@ public:
virtual void checkSpellingOfString(const String&, int* misspellingLocation, int* misspellingLength) = 0;
virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord) = 0;
virtual void checkGrammarOfString(const String&, Vector<GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength) = 0;
- virtual void requestCheckingOfString(PassRefPtr<TextCheckingRequest>) = 0;
+ virtual void requestCheckingOfString(PassRefPtrWillBeRawPtr<TextCheckingRequest>) = 0;
};
}

Powered by Google App Engine
This is Rietveld 408576698