| Index: ash/host/window_tree_host_factory.cc
|
| diff --git a/ash/host/window_tree_host_factory.cc b/ash/host/window_tree_host_factory.cc
|
| deleted file mode 100644
|
| index ddb60d046aefa0c75c8e4df3f7893c22d0853ad9..0000000000000000000000000000000000000000
|
| --- a/ash/host/window_tree_host_factory.cc
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -// Copyright (c) 2012 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 "ash/host/window_tree_host_factory.h"
|
| -
|
| -#include "ui/aura/window_tree_host.h"
|
| -
|
| -namespace {
|
| -
|
| -class WindowTreeHostFactoryImpl : public ash::WindowTreeHostFactory {
|
| - public:
|
| - WindowTreeHostFactoryImpl() {}
|
| -
|
| - // Overridden from WindowTreeHostFactory:
|
| - virtual aura::WindowTreeHost* CreateWindowTreeHost(
|
| - const gfx::Rect& initial_bounds) OVERRIDE {
|
| - return aura::WindowTreeHost::Create(initial_bounds);
|
| - }
|
| -};
|
| -
|
| -}
|
| -
|
| -namespace ash {
|
| -
|
| -// static
|
| -WindowTreeHostFactory* WindowTreeHostFactory::Create() {
|
| - return new WindowTreeHostFactoryImpl;
|
| -}
|
| -
|
| -} // namespace ash
|
|
|