diff options
author | gman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-13 00:30:04 +0000 |
---|---|---|
committer | gman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-13 00:30:04 +0000 |
commit | 0b35d1c7ed660645057ba30cdab8b01ba7d53555 (patch) | |
tree | e480d7e9264c590ef9ecad0a41c470d0879f6447 | |
parent | 87d1632fbbd7b1b5723237c524eccbe96b01b127 (diff) | |
download | chromium_src-0b35d1c7ed660645057ba30cdab8b01ba7d53555.zip chromium_src-0b35d1c7ed660645057ba30cdab8b01ba7d53555.tar.gz chromium_src-0b35d1c7ed660645057ba30cdab8b01ba7d53555.tar.bz2 |
Adds the missing BoundingBox docs.
The issue was we use the marshaled type
for classes that define a marsheled function
and there are cases, like the boundingbox
where we don't want that to happen.
Review URL: http://codereview.chromium.org/548001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36071 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | o3d/DEPS | 2 | ||||
-rw-r--r-- | o3d/plugin/idl/bounding_box.idl | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ vars = { "chromium_trunk": "http://src.chromium.org/svn/trunk", - "nixysa_rev": "62", + "nixysa_rev": "63", "chromium_rev": "28829", "o3d_code_rev": "166", "skia_rev": "376", diff --git a/o3d/plugin/idl/bounding_box.idl b/o3d/plugin/idl/bounding_box.idl index b41b86c..9a5cc82 100644 --- a/o3d/plugin/idl/bounding_box.idl +++ b/o3d/plugin/idl/bounding_box.idl @@ -36,7 +36,7 @@ namespace o3d { %[ A BoundingBox represents an Axis Aligned Bounding Box. %] -[binding_model=by_value, marshaled, nocpp, include="core/cross/bounding_box.h"] +[binding_model=by_value, marshaled, nocpp, include="core/cross/bounding_box.h", no_marshaled_docs] class BoundingBox { %[ Creates BoundingBox from min_extent and max_extent |