OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #include "athena/wm/split_view_controller.h" |
| 6 |
| 7 #include "ui/aura/window.h" |
| 8 #include "ui/events/event_handler.h" |
| 9 |
| 10 namespace athena { |
| 11 |
| 12 SplitViewController::SplitViewController() { |
| 13 } |
| 14 |
| 15 SplitViewController::~SplitViewController() { |
| 16 } |
| 17 |
| 18 void SplitViewController::ScrollBegin( |
| 19 BezelController::Bezel bezel, float delta) { |
| 20 } |
| 21 |
| 22 void SplitViewController::ScrollEnd() { |
| 23 } |
| 24 |
| 25 void SplitViewController::ScrollUpdate(float delta) { |
| 26 } |
| 27 |
| 28 bool SplitViewController::CanScroll() { |
| 29 return false; |
| 30 } |
| 31 |
| 32 } // namespace athena |
| 33 |
OLD | NEW |