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 "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 |
OLD | NEW |