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

Unified Diff: Source/core/html/forms/FormController.h

Issue 656723005: Use C++11 features in core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: use nullptr 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/core/html/forms/FormController.h
diff --git a/Source/core/html/forms/FormController.h b/Source/core/html/forms/FormController.h
index ab081cf46fa409a652e8bc809f71af9d51c1aeb6..30b4418c6c18857a3e99ef1c9d1e43cb0e76d3ee 100644
--- a/Source/core/html/forms/FormController.h
+++ b/Source/core/html/forms/FormController.h
@@ -71,7 +71,7 @@ inline void FormControlState::append(const String& value)
m_values.append(value);
}
-typedef HashMap<AtomicString, OwnPtr<SavedFormState> > SavedFormStateMap;
+typedef HashMap<AtomicString, OwnPtr<SavedFormState>> SavedFormStateMap;
class DocumentState final : public RefCountedWillBeGarbageCollected<DocumentState> {
DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(DocumentState);

Powered by Google App Engine
This is Rietveld 408576698