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

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

Issue 774473003: Move view_manager service implementation to //services (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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 #ifndef MOJO_SERVICES_VIEW_MANAGER_VIEW_COORDINATE_CONVERSIONS_H_
6 #define MOJO_SERVICES_VIEW_MANAGER_VIEW_COORDINATE_CONVERSIONS_H_
7
8 namespace gfx {
9 class Rect;
10 }
11
12 namespace mojo {
13 namespace service {
14
15 class ServerView;
16
17 // Converts |rect| from the coordinates of |from| to the coordinates of |to|.
18 // |from| and |to| must be an ancestors or descendants of each other.
19 gfx::Rect ConvertRectBetweenViews(const ServerView* from,
20 const ServerView* to,
21 const gfx::Rect& rect);
22
23 } // namespace service
24 } // namespace mojo
25
26 #endif // MOJO_SERVICES_VIEW_MANAGER_VIEW_COORDINATE_CONVERSIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698