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

Unified Diff: third_party/WebKit/Source/modules/webgl/OESVertexArrayObject.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: 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/modules/webgl/OESVertexArrayObject.cpp
diff --git a/third_party/WebKit/Source/modules/webgl/OESVertexArrayObject.cpp b/third_party/WebKit/Source/modules/webgl/OESVertexArrayObject.cpp
index e15281d1fc9389c193ddc0c21e29049712974ac0..3b58567b5c630c2ed9b9f59967990b945b6059e6 100644
--- a/third_party/WebKit/Source/modules/webgl/OESVertexArrayObject.cpp
+++ b/third_party/WebKit/Source/modules/webgl/OESVertexArrayObject.cpp
@@ -87,8 +87,9 @@ void OESVertexArrayObject::bindVertexArrayOES(
if (scoped.isLost())
return;
- if (arrayObject && (arrayObject->isDeleted() ||
- !arrayObject->validate(0, scoped.context()))) {
+ if (arrayObject &&
+ (arrayObject->isDeleted() ||
+ !arrayObject->validate(0, scoped.context()))) {
scoped.context()->synthesizeGLError(
GL_INVALID_OPERATION, "bindVertexArrayOES", "invalid arrayObject");
return;

Powered by Google App Engine
This is Rietveld 408576698