summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgman@google.com <gman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-30 02:14:36 +0000
committergman@google.com <gman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-30 02:14:36 +0000
commitfc4fe3fc68245452e1acd7177353e4625411336f (patch)
tree523eb42c1668f742356886928cead44e23d3e54c
parent8784a7c3fafb6eafbd434c83df94f4a146a0ce9f (diff)
downloadchromium_src-fc4fe3fc68245452e1acd7177353e4625411336f.zip
chromium_src-fc4fe3fc68245452e1acd7177353e4625411336f.tar.gz
chromium_src-fc4fe3fc68245452e1acd7177353e4625411336f.tar.bz2
Fix a few more doc errors.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19575 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--o3d/plugin/idl/draw_list.idl2
-rw-r--r--o3d/plugin/idl/file_request.idl9
-rw-r--r--o3d/plugin/idl/param.idl5
3 files changed, 12 insertions, 4 deletions
diff --git a/o3d/plugin/idl/draw_list.idl b/o3d/plugin/idl/draw_list.idl
index 7a46e0b..66fdcb74 100644
--- a/o3d/plugin/idl/draw_list.idl
+++ b/o3d/plugin/idl/draw_list.idl
@@ -51,8 +51,6 @@ namespace o3d {
BY_Z_ORDER = 1,
BY_PRIORITY = 2
};
-
- [getter] unsigned int global_index_;
}; // DrawList
} // namespace o3d
diff --git a/o3d/plugin/idl/file_request.idl b/o3d/plugin/idl/file_request.idl
index c0d6f77..5e931ce 100644
--- a/o3d/plugin/idl/file_request.idl
+++ b/o3d/plugin/idl/file_request.idl
@@ -61,8 +61,15 @@ namespace o3d {
[nocpp, include="core/cross/file_request.h"] class FileRequest
: ObjectBase {
+ %[
+ A callback to call whenever the ready state of the request changes.
+ %]
[setter=set_onreadystatechange]
- FileRequestCallback onreadystatechange;
+ FileRequestCallback onreadystatechange;
+
+ %[
+ The URI this request is for.
+ %]
[getter=uri] String uri;
%[
On completion of successful texture file loads, this holds the loaded
diff --git a/o3d/plugin/idl/param.idl b/o3d/plugin/idl/param.idl
index 09e21db..4e4c36d 100644
--- a/o3d/plugin/idl/param.idl
+++ b/o3d/plugin/idl/param.idl
@@ -246,7 +246,7 @@ typedef Param[] ParamVector;
};
%[
- A Param which stores a Texture.
+ A Param which stores a Sampler.
%]
[nocpp, include="core/cross/sampler.h"] class ParamSampler : Param {
%[
@@ -255,6 +255,9 @@ typedef Param[] ParamVector;
[getter, setter, property=rw] Sampler? value_;
};
+%[
+ A Param which stores a Texture.
+%]
[nocpp, include="core/cross/param.h"] class ParamTexture : Param {
%[
The Texture stored by the Param.