Index: cc/output/overlay_candidates.cc |
diff --git a/cc/output/overlay_candidates.cc b/cc/output/overlay_candidates.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ff7cfaba2f2c899176800b15ec42add96a7240e7 |
--- /dev/null |
+++ b/cc/output/overlay_candidates.cc |
@@ -0,0 +1,24 @@ |
+// Copyright 2014 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 "cc/output/overlay_candidates.h" |
+ |
+namespace cc { |
+ |
+OverlayCandidates::OverlaySurfaceCandidate::OverlaySurfaceCandidate() |
+ : transform(NONE), |
+ format(RGBA_8888), |
+ crop_rect(0, 0, 1, 1), |
+ overlay_handled(false) {} |
+ |
+OverlayCandidates::OverlaySurfaceCandidate::~OverlaySurfaceCandidate() {} |
+ |
+void OverlayCandidates::CheckOverlaySupport( |
+ OverlaySurfaceCandidateList* surfaces) { |
+ NOTREACHED(); |
+} |
+ |
+OverlayCandidates::~OverlayCandidates() {} |
+ |
+} // namespace cc |