OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2015 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 CHROMECAST_PUBLIC_SIZE_H_ | |
6 #define CHROMECAST_PUBLIC_SIZE_H_ | |
7 | |
8 namespace chromecast { | |
9 | |
10 struct Size { | |
11 Size(int w, int h) : width(w), height(h) {} | |
12 int width; | |
13 int height; | |
14 }; | |
15 | |
16 } // namespace chromecast | |
17 | |
18 #endif // CHROMECAST_PUBLIC_SIZE_H | |
OLD | NEW |