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

Unified Diff: ppapi/cpp/graphics_3d_client.h

Issue 8004005: New and updated documentation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/cpp/graphics_3d.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/graphics_3d_client.h
===================================================================
--- ppapi/cpp/graphics_3d_client.h (revision 105881)
+++ ppapi/cpp/graphics_3d_client.h (working copy)
@@ -7,6 +7,9 @@
#include "ppapi/c/pp_stdint.h"
+/// @file
+/// This file defines the API for callbacks related to 3D.
+
namespace pp {
class Instance;
@@ -19,12 +22,18 @@
// instance.
class Graphics3DClient {
public:
+ ///
+ /// A constructor for creating a Graphics3DClient.
+ ///
+ /// @param[in] instance The instance that will own the new
+ /// <code>Graphics3DClient</code>.
Graphics3DClient(Instance* instance);
+
+ /// Destructor.
virtual ~Graphics3DClient();
- /**
- * Notification that the context was lost for the 3D devices.
- */
+ /// Graphics3DContextLost() is a notification that the context was lost for
+ /// the 3D devices.
virtual void Graphics3DContextLost() = 0;
private:
« no previous file with comments | « ppapi/cpp/graphics_3d.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698