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

Side by Side Diff: plugin/idl/layer.idl

Issue 6320002: O2D: Several (unrelated) improvements:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « core/cross/cairo/renderer_cairo.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2010, Google Inc. 2 * Copyright 2010, Google Inc.
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 The x coordinate of the top-left corner of this layer. 52 The x coordinate of the top-left corner of this layer.
53 %] 53 %]
54 [getter, setter] double x; 54 [getter, setter] double x;
55 55
56 %[ 56 %[
57 The y coordinate of the top-left corner of this layer. 57 The y coordinate of the top-left corner of this layer.
58 %] 58 %]
59 [getter, setter] double y; 59 [getter, setter] double y;
60 60
61 %[ 61 %[
62 The z coordinate of the layer (used only to determine stacking order).
63 %]
64 [getter, setter] double z;
65
66 %[
62 The width of this layer. 67 The width of this layer.
63 %] 68 %]
64 [getter, setter] double width; 69 [getter, setter] double width;
65 70
66 %[ 71 %[
67 The height of this layer. 72 The height of this layer.
68 %] 73 %]
69 [getter, setter] double height; 74 [getter, setter] double height;
70 75
71 %[ 76 %[
72 A scaling factor to apply to the pattern's x-axis. 77 A scaling factor to apply to the pattern's x-axis.
73 %] 78 %]
74 [getter, setter] double scale_x; 79 [getter, setter] double scale_x;
75 80
76 %[ 81 %[
77 A scaling factor to apply to the pattern's y-axis. 82 A scaling factor to apply to the pattern's y-axis.
78 %] 83 %]
79 [getter, setter] double scale_y; 84 [getter, setter] double scale_y;
80 }; // Layer 85 }; // Layer
81 86
82 } // namespace o2d 87 } // namespace o2d
83 88
84 } // namespace o3d 89 } // namespace o3d
OLDNEW
« no previous file with comments | « core/cross/cairo/renderer_cairo.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698