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

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

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

Powered by Google App Engine
This is Rietveld 408576698