screen_aura.cc 494 B

123456789101112131415161718192021
  1. // Copyright (c) 2012 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.
  4. #include "ui/display/screen.h"
  5. #include "base/notreached.h"
  6. namespace display {
  7. // static
  8. gfx::NativeWindow Screen::GetWindowForView(gfx::NativeView view) {
  9. return view;
  10. }
  11. Screen* CreateNativeScreen() {
  12. NOTREACHED() << "Implementation should be installed at higher level.";
  13. return NULL;
  14. }
  15. } // namespace display