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

Unified Diff: Source/core/html/parser/BackgroundHTMLParser.h

Issue 656723005: Use C++11 features in core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: mike's comments 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
« no previous file with comments | « Source/core/html/parser/AtomicHTMLToken.h ('k') | Source/core/html/parser/BackgroundHTMLParser.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/parser/BackgroundHTMLParser.h
diff --git a/Source/core/html/parser/BackgroundHTMLParser.h b/Source/core/html/parser/BackgroundHTMLParser.h
index d65f60ebc8f3df20fd0fc104204c0282a2babe85..cc9309e3d61b89af919d073a143e3560c8e6fb96 100644
--- a/Source/core/html/parser/BackgroundHTMLParser.h
+++ b/Source/core/html/parser/BackgroundHTMLParser.h
@@ -54,7 +54,7 @@ public:
OwnPtr<TextResourceDecoder> decoder;
};
- static void start(PassRefPtr<WeakReference<BackgroundHTMLParser> >, PassOwnPtr<Configuration>);
+ static void start(PassRefPtr<WeakReference<BackgroundHTMLParser>>, PassOwnPtr<Configuration>);
struct Checkpoint {
WeakPtr<HTMLDocumentParser> parser;
@@ -68,7 +68,7 @@ public:
void appendRawBytesFromParserThread(const char* data, int dataLength);
- void appendRawBytesFromMainThread(PassOwnPtr<Vector<char> >);
+ void appendRawBytesFromMainThread(PassOwnPtr<Vector<char>>);
void setDecoder(PassOwnPtr<TextResourceDecoder>);
void flush();
void resumeFrom(PassOwnPtr<Checkpoint>);
@@ -79,7 +79,7 @@ public:
void forcePlaintextForTextDocument();
private:
- BackgroundHTMLParser(PassRefPtr<WeakReference<BackgroundHTMLParser> >, PassOwnPtr<Configuration>);
+ BackgroundHTMLParser(PassRefPtr<WeakReference<BackgroundHTMLParser>>, PassOwnPtr<Configuration>);
~BackgroundHTMLParser();
void appendDecodedBytes(const String&);
« no previous file with comments | « Source/core/html/parser/AtomicHTMLToken.h ('k') | Source/core/html/parser/BackgroundHTMLParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698