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

Side by Side Diff: ui/views/controls/slide_out_view_impl.cc

Issue 11836003: Allow message center and related bubbles to render on Windows. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove ifdefs. Created 7 years, 11 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 (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
5 #include "ui/views/controls/slide_out_view_impl.h"
6
7 #include "ui/compositor/layer.h"
8 #include "ui/compositor/scoped_layer_animation_settings.h"
9 #include "ui/gfx/transform.h"
10 #include "ui/views/controls/slide_out_view.h"
11
12 namespace views {
13
14 // Base implementation for unsupported platforms.
15
16 SlideOutViewImpl::SlideOutViewImpl(SlideOutView* view) { }
17
18 SlideOutViewImpl::~SlideOutViewImpl() { }
19
20 void SlideOutViewImpl::TransformView(float scroll_amount) { }
21
22 void SlideOutViewImpl::RestoreView() { }
23
24 void SlideOutViewImpl::HideView(SlideOutView::SlideDirection direction) { }
25
26 } // namespace views
27
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698