diff options
author | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-13 17:52:47 +0000 |
---|---|---|
committer | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-13 17:52:47 +0000 |
commit | 13c01653bbe95a8f142b6e9e67e4236fee27c839 (patch) | |
tree | 8b76e6516204c5529d4982d8a656ccf3e2f5302e /ppapi | |
parent | 7c5478d7215dc4bb9eca8aa06a5fbd96acc19121 (diff) | |
download | chromium_src-13c01653bbe95a8f142b6e9e67e4236fee27c839.zip chromium_src-13c01653bbe95a8f142b6e9e67e4236fee27c839.tar.gz chromium_src-13c01653bbe95a8f142b6e9e67e4236fee27c839.tar.bz2 |
Needed to add an @file introduction and a class introduction.
Review URL: http://codereview.chromium.org/9124014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117651 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/cpp/view.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ppapi/cpp/view.h b/ppapi/cpp/view.h index fc363dc..e793e88 100644 --- a/ppapi/cpp/view.h +++ b/ppapi/cpp/view.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -9,8 +9,14 @@ #include "ppapi/cpp/rect.h" #include "ppapi/cpp/size.h" +/// @file +/// This file defines the API for getting the state of a the view for an +/// instance. + namespace pp { +/// This class represents the state of the view for an instance and contains +/// functions for retrieving the current state of that view. class View : public Resource { public: /// Default constructor for creating an is_null() <code>View</code> object. |