diff options
author | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-07 18:59:40 +0000 |
---|---|---|
committer | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-07 18:59:40 +0000 |
commit | e8659661343fd9417843a60b343ba8fa71af6953 (patch) | |
tree | 9497e45ebe701b36bd6e401c28b323cd1deac5f5 /ppapi/cpp | |
parent | e4cbcc77d2e11a060e1232dcf60ad647a4d4dfb5 (diff) | |
download | chromium_src-e8659661343fd9417843a60b343ba8fa71af6953.zip chromium_src-e8659661343fd9417843a60b343ba8fa71af6953.tar.gz chromium_src-e8659661343fd9417843a60b343ba8fa71af6953.tar.bz2 |
Fixed some TODO comments so they wouldn't show up in the docs.
Review URL: http://codereview.chromium.org/9600025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125420 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp')
-rw-r--r-- | ppapi/cpp/module.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/ppapi/cpp/module.h b/ppapi/cpp/module.h index 871128c..07cfea9 100644 --- a/ppapi/cpp/module.h +++ b/ppapi/cpp/module.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. @@ -56,10 +56,10 @@ class Module { /// The get_browser_interface() function returns the internal /// <code>get_browser_interface</code> pointer. - /// TODO(sehr): This should be removed once the NaCl browser plugin no longer - /// needs it. /// /// @return A <code>PPB_GetInterface</code> internal pointer. + // TODO(sehr): This should be removed once the NaCl browser plugin no longer + // needs it. PPB_GetInterface get_browser_interface() const { return get_browser_interface_; } @@ -120,13 +120,12 @@ class Module { // InternalInit() sets the browser interface and calls the regular Init() /// function that can be overridden by the base classes. /// - /// TODO(brettw) make this private when I can figure out how to make the - /// initialize function a friend. - /// /// @param[in] mod A <code>PP_Module</code>. /// @param[in] get_browser_interface The browser interface to set. /// /// @return true if successful, otherwise false. + // TODO(brettw) make this private when I can figure out how to make the + // initialize function a friend. bool InternalInit(PP_Module mod, PPB_GetInterface get_browser_interface); |