| Index: ui/display/chromeos/x11/display_configurator_x11.cc
|
| diff --git a/ui/display/chromeos/x11/display_configurator_x11.cc b/ui/display/chromeos/x11/display_configurator_x11.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a21219a7732f6377b2011e0ea249903a7e23dc73
|
| --- /dev/null
|
| +++ b/ui/display/chromeos/x11/display_configurator_x11.cc
|
| @@ -0,0 +1,19 @@
|
| +// 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 "ui/display/chromeos/display_configurator.h"
|
| +
|
| +#include "ui/display/chromeos/x11/native_display_delegate_x11.h"
|
| +#include "ui/display/chromeos/x11/touchscreen_delegate_x11.h"
|
| +
|
| +
|
| +namespace ui {
|
| +
|
| +void DisplayConfigurator::PlatformInitialize() {
|
| + InitializeDelegates(
|
| + scoped_ptr<NativeDisplayDelegate>(new NativeDisplayDelegateX11()),
|
| + scoped_ptr<TouchscreenDelegate>(new TouchscreenDelegateX11()));
|
| +}
|
| +
|
| +} // namespace ui
|
|
|