Index: components/mus/public/cpp/lib/window_private.cc |
diff --git a/components/mus/public/cpp/lib/window_private.cc b/components/mus/public/cpp/lib/window_private.cc |
deleted file mode 100644 |
index 11c7ebeefae68ba769708197ff0cbb1190654452..0000000000000000000000000000000000000000 |
--- a/components/mus/public/cpp/lib/window_private.cc |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-// 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 "components/mus/public/cpp/lib/window_private.h" |
- |
-namespace mus { |
- |
-WindowPrivate::WindowPrivate(Window* window) : window_(window) { |
- CHECK(window); |
-} |
- |
-WindowPrivate::~WindowPrivate() {} |
- |
-// static |
-Window* WindowPrivate::LocalCreate() { |
- return new Window; |
-} |
- |
-void WindowPrivate::LocalSetSharedProperty(const std::string& name, |
- mojo::Array<uint8_t> new_data) { |
- std::vector<uint8_t> data; |
- std::vector<uint8_t>* data_ptr = nullptr; |
- if (!new_data.is_null()) { |
- data = new_data.To<std::vector<uint8_t>>(); |
- data_ptr = &data; |
- } |
- LocalSetSharedProperty(name, data_ptr); |
-} |
- |
-} // namespace mus |