summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/instance.h
diff options
context:
space:
mode:
authorjond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-30 19:10:40 +0000
committerjond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-30 19:10:40 +0000
commit216326c656dff569a10195ab91edecf8f43a33b1 (patch)
tree12f87f5be2cfb9cb861b7526be3d8e923036eca0 /ppapi/cpp/instance.h
parent5ce7b1d9688559ebf02023a067399b1a7c78181a (diff)
downloadchromium_src-216326c656dff569a10195ab91edecf8f43a33b1.zip
chromium_src-216326c656dff569a10195ab91edecf8f43a33b1.tar.gz
chromium_src-216326c656dff569a10195ab91edecf8f43a33b1.tar.bz2
Changed all @code to <code> and @endcode to </code> as per dmichael. Adding Polina to the review to look at url_loader.h and give approval of text that points to example.
Review URL: http://codereview.chromium.org/7715005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98856 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp/instance.h')
-rw-r--r--ppapi/cpp/instance.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/ppapi/cpp/instance.h b/ppapi/cpp/instance.h
index da21806..ea145f9 100644
--- a/ppapi/cpp/instance.h
+++ b/ppapi/cpp/instance.h
@@ -223,7 +223,7 @@ class Instance {
/// the instance on which it was invoked, with <code>message</code> being a
/// string <code>Var</code> containing "Hello world!"
///
- /// @code
+ /// <code>
///
/// <body>
/// <object id="plugin"
@@ -233,7 +233,7 @@ class Instance {
/// </script>
/// </body>
///
- /// @endcode
+ /// </code>
///
/// Refer to PostMessage() for sending messages to JavaScript.
///
@@ -327,12 +327,12 @@ class Instance {
///
/// <strong>Example:</strong>
///
- /// @code
+ /// <code>
/// RequestInputEvents(PP_INPUTEVENT_CLASS_MOUSE);
/// RequestFilteringInputEvents(
/// PP_INPUTEVENT_CLASS_WHEEL | PP_INPUTEVENT_CLASS_KEYBOARD);
///
- /// @endcode
+ /// </code>
///
/// @param event_classes A combination of flags from
/// <code>PP_InputEvent_Class</code> that identifies the classes of events
@@ -365,13 +365,13 @@ class Instance {
///
/// <strong>Example:</strong>
///
- /// @code
+ /// <code>
///
/// RequestInputEvents(PP_INPUTEVENT_CLASS_MOUSE);
/// RequestFilteringInputEvents(
/// PP_INPUTEVENT_CLASS_WHEEL | PP_INPUTEVENT_CLASS_KEYBOARD);
///
- /// @endcode
+ /// </code>
///
/// @param event_classes A combination of flags from
/// <code>PP_InputEvent_Class</code> that identifies the classes of events
@@ -412,7 +412,7 @@ class Instance {
///
/// <strong>Example:</strong>
///
- /// @code
+ /// <code>
///
/// <body>
/// <object id="plugin"
@@ -425,15 +425,15 @@ class Instance {
/// </script>
/// </body>
///
- /// @endcode
+ /// </code>
///
/// The instance then invokes PostMessage() as follows:
///
- /// @code
+ /// <code>
///
/// PostMessage(pp::Var("Hello world!"));
///
- /// @endcode
+ /// </code>
///
/// The browser will pop-up an alert saying "Hello world!"
///