Index: content/common/gpu/create_image_params.cc |
diff --git a/content/common/gpu/create_image_params.cc b/content/common/gpu/create_image_params.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..be50688816e9265295e7674c9062eeb75dea1ffb |
--- /dev/null |
+++ b/content/common/gpu/create_image_params.cc |
@@ -0,0 +1,17 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "content/common/gpu/create_image_params.h" |
+ |
+namespace content { |
+ |
+CreateImageParams::CreateImageParams() |
+ : id(0), |
+ format(gfx::BufferFormat::ATC), |
+ internal_format(0), |
+ image_release_count(0l) {} |
+ |
+CreateImageParams::~CreateImageParams() {} |
+ |
+} // namespace content |