Index: cc/surfaces/surface_ref_base.cc |
diff --git a/cc/surfaces/surface_ref_base.cc b/cc/surfaces/surface_ref_base.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..dbb85a928de70738df2ceac57ecb68e687e44f54 |
--- /dev/null |
+++ b/cc/surfaces/surface_ref_base.cc |
@@ -0,0 +1,13 @@ |
+// Copyright (c) 2016 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/surfaces/surface_ref_base.h" |
+ |
+namespace cc { |
+ |
+SurfaceRefInternal::~SurfaceRefInternal() { |
Saman Sami
2016/11/30 18:05:52
Move more stuff to this file or move this to heade
|
+ DCHECK(!is_active_); |
+} |
+ |
+} // namespace cc |