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

Unified Diff: third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTestHelpers.h

Issue 2709033003: Migrate WTF::HashMap::get() to ::at() (Closed)
Patch Set: rebase Created 3 years, 10 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/platform/graphics/gpu/DrawingBufferTestHelpers.h
diff --git a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTestHelpers.h b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTestHelpers.h
index 06218bc6d147796b8c595708d6b4235c1e260842..14e987e1ccc6704fa38cb3d39ea3e710ae420be9 100644
--- a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTestHelpers.h
+++ b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTestHelpers.h
@@ -221,7 +221,7 @@ class GLES2InterfaceForTests : public gpu::gles2::GLES2InterfaceStub,
if (!m_createImageChromiumFail) {
ASSERT_TRUE(m_textureSizes.contains(texture));
- m_mostRecentlyProducedSize = m_textureSizes.get(texture);
+ m_mostRecentlyProducedSize = m_textureSizes.at(texture);
}
}

Powered by Google App Engine
This is Rietveld 408576698