Linux: Depend on liberation-fonts package for RPMs.
[chromium-blink-merge.git] / components / mus / public / cpp / lib / view_private.cc
blob8cee1cc8560ff4a6bb8e106580bfc7ca75b86977
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/mus/public/cpp/lib/view_private.h"
7 namespace mus {
9 ViewPrivate::ViewPrivate(View* view) : view_(view) {
10 CHECK(view);
13 ViewPrivate::~ViewPrivate() {}
15 // static
16 View* ViewPrivate::LocalCreate() {
17 return new View;
20 } // namespace mus