Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Side by Side Diff: athena/wm/split_view_controller.cc

Issue 394833004: Split View Mode: Support for the 2-finger bezel scroll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing a rebase issue. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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(BezelController::Bezel bezel,
19 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698