| Index: third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp
 | 
| diff --git a/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp b/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp
 | 
| deleted file mode 100644
 | 
| index fccceedf4be6573204b6e60490409cf2c016a675..0000000000000000000000000000000000000000
 | 
| --- a/third_party/WebKit/Source/modules/screen_orientation/ScreenOrientationDispatcher.cpp
 | 
| +++ /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 "modules/screen_orientation/ScreenOrientationDispatcher.h"
 | 
| -
 | 
| -#include "public/platform/Platform.h"
 | 
| -
 | 
| -namespace blink {
 | 
| -
 | 
| -ScreenOrientationDispatcher& ScreenOrientationDispatcher::instance() {
 | 
| -  DEFINE_STATIC_LOCAL(ScreenOrientationDispatcher, screenOrientationDispatcher,
 | 
| -                      (new ScreenOrientationDispatcher));
 | 
| -  return screenOrientationDispatcher;
 | 
| -}
 | 
| -
 | 
| -ScreenOrientationDispatcher::ScreenOrientationDispatcher() {}
 | 
| -
 | 
| -DEFINE_TRACE(ScreenOrientationDispatcher) {
 | 
| -  PlatformEventDispatcher::trace(visitor);
 | 
| -}
 | 
| -
 | 
| -void ScreenOrientationDispatcher::startListening() {
 | 
| -  Platform::current()->startListening(WebPlatformEventTypeScreenOrientation, 0);
 | 
| -}
 | 
| -
 | 
| -void ScreenOrientationDispatcher::stopListening() {
 | 
| -  Platform::current()->stopListening(WebPlatformEventTypeScreenOrientation);
 | 
| -}
 | 
| -
 | 
| -}  // namespace blink
 | 
| 
 |