| 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 #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_ | |
| OLD | NEW |