Commit b05c3dbf authored by zhenghao@google.com's avatar zhenghao@google.com

Add std prefix for find().


BUG=none
TEST=none


Review URL: http://codereview.chromium.org/7980049

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102227 0039d316-1c4b-4281-b951-d872f2087c98
parent f482b59a
......@@ -837,7 +837,7 @@ bool WebGraphicsContext3DInProcessCommandBufferImpl::readBackFramebuffer(
void WebGraphicsContext3DInProcessCommandBufferImpl::synthesizeGLError(
WGC3Denum error) {
if (find(synthetic_errors_.begin(), synthetic_errors_.end(), error) ==
if (std::find(synthetic_errors_.begin(), synthetic_errors_.end(), error) ==
synthetic_errors_.end()) {
synthetic_errors_.push_back(error);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment