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

Side by Side Diff: services/view_manager/test_server_view_delegate.cc

Issue 772893004: Adds constants and runner for animations (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Merge Created 6 years 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 "services/view_manager/test_server_view_delegate.h"
6
7 namespace mojo {
8 namespace service {
9
10 TestServerViewDelegate::TestServerViewDelegate() {
11 }
12
13 TestServerViewDelegate::~TestServerViewDelegate() {
14 }
15
16 void TestServerViewDelegate::OnWillDestroyView(ServerView* view) {
17 }
18
19 void TestServerViewDelegate::OnViewDestroyed(const ServerView* view) {
20 }
21
22 void TestServerViewDelegate::OnWillChangeViewHierarchy(ServerView* view,
23 ServerView* new_parent,
24 ServerView* old_parent) {
25 }
26
27 void TestServerViewDelegate::OnViewHierarchyChanged(
28 const ServerView* view,
29 const ServerView* new_parent,
30 const ServerView* old_parent) {
31 }
32
33 void TestServerViewDelegate::OnViewBoundsChanged(const ServerView* view,
34 const gfx::Rect& old_bounds,
35 const gfx::Rect& new_bounds) {
36 }
37
38 void TestServerViewDelegate::OnViewSurfaceIdChanged(const ServerView* view) {
39 }
40
41 void TestServerViewDelegate::OnViewReordered(const ServerView* view,
42 const ServerView* relative,
43 OrderDirection direction) {
44 }
45
46 void TestServerViewDelegate::OnWillChangeViewVisibility(ServerView* view) {
47 }
48
49 void TestServerViewDelegate::OnViewSharedPropertyChanged(
50 const ServerView* view,
51 const std::string& name,
52 const std::vector<uint8_t>* new_data) {
53 }
54
55 void TestServerViewDelegate::OnScheduleViewPaint(const ServerView* view) {
56 }
57
58 } // namespace service
59 } // namespace mojo
OLDNEW
« no previous file with comments | « services/view_manager/test_server_view_delegate.h ('k') | services/view_manager/view_coordinate_conversions_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698