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

Side by Side Diff: mojo/services/view_manager/server_view_delegate.h

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 #ifndef SERVICES_VIEW_MANAGER_SERVER_VIEW_DELEGATE_H_
6 #define SERVICES_VIEW_MANAGER_SERVER_VIEW_DELEGATE_H_
7
8 #include "third_party/mojo_services/src/view_manager/public/interfaces/view_mana ger_constants.mojom.h"
9
10 namespace gfx {
11 class Rect;
12 }
13
14 namespace mojo {
15 class ViewportMetrics;
16 }
17
18 namespace view_manager {
19
20 class ServerView;
21
22 class ServerViewDelegate {
23 public:
24 // Invoked when a view is about to be destroyed; before any of the children
25 // have been removed and before the view has been removed from its parent.
26 virtual void OnWillDestroyView(ServerView* view) = 0;
27
28 // Invoked at the end of the View's destructor (after it has been removed from
29 // the hierarchy).
30 virtual void OnViewDestroyed(const ServerView* view) = 0;
31
32 virtual void OnWillChangeViewHierarchy(ServerView* view,
33 ServerView* new_parent,
34 ServerView* old_parent) = 0;
35
36 virtual void OnViewHierarchyChanged(const ServerView* view,
37 const ServerView* new_parent,
38 const ServerView* old_parent) = 0;
39
40 virtual void OnViewBoundsChanged(const ServerView* view,
41 const gfx::Rect& old_bounds,
42 const gfx::Rect& new_bounds) = 0;
43
44 virtual void OnViewSurfaceIdChanged(const ServerView* view) = 0;
45
46 virtual void OnViewReordered(const ServerView* view,
47 const ServerView* relative,
48 mojo::OrderDirection direction) = 0;
49
50 virtual void OnWillChangeViewVisibility(ServerView* view) = 0;
51
52 virtual void OnViewSharedPropertyChanged(
53 const ServerView* view,
54 const std::string& name,
55 const std::vector<uint8_t>* new_data) = 0;
56
57 virtual void OnScheduleViewPaint(const ServerView* view) = 0;
58
59 protected:
60 virtual ~ServerViewDelegate() {}
61 };
62
63 } // namespace view_manager
64
65 #endif // SERVICES_VIEW_MANAGER_SERVER_VIEW_DELEGATE_H_
OLDNEW
« no previous file with comments | « mojo/services/view_manager/server_view.cc ('k') | mojo/services/view_manager/test_change_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698