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

Unified Diff: Source/platform/graphics/GraphicsContext.h

Issue 858663002: Fix template angle bracket syntax in platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 11 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/graphics/GraphicsContext.h
diff --git a/Source/platform/graphics/GraphicsContext.h b/Source/platform/graphics/GraphicsContext.h
index ee648277b8970063dc7a47b8a0fccd87f3a4d11d..1ce5884c91f0d3417ade1e018445f940c6e2989f 100644
--- a/Source/platform/graphics/GraphicsContext.h
+++ b/Source/platform/graphics/GraphicsContext.h
@@ -490,7 +490,7 @@ private:
// Paint states stack. Enables local drawing state change with save()/restore() calls.
// This state controls the appearance of drawn content.
// We do not delete from this stack to avoid memory churn.
- Vector<OwnPtr<GraphicsContextState> > m_paintStateStack;
+ Vector<OwnPtr<GraphicsContextState>> m_paintStateStack;
// Current index on the stack. May not be the last thing on the stack.
unsigned m_paintStateIndex;
// Raw pointer to the current state.
@@ -498,7 +498,7 @@ private:
AnnotationModeFlags m_annotationMode;
- Vector<OwnPtr<RecordingState> > m_recordingStateStack;
+ Vector<OwnPtr<RecordingState>> m_recordingStateStack;
#if ENABLE(ASSERT)
unsigned m_annotationCount;
« no previous file with comments | « Source/platform/graphics/DeferredImageDecoder.h ('k') | Source/platform/graphics/GraphicsContextAnnotation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698