diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-19 22:45:25 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-19 22:45:25 +0000 |
commit | b602a096b9993b30b7c8b9d3d74b1e326e71a3d9 (patch) | |
tree | 17ce368a286cad214ff49e9049de70d0281bc5be /ppapi | |
parent | 13caac27a6d6751e9733ecb276029c2d9774b640 (diff) | |
download | chromium_src-b602a096b9993b30b7c8b9d3d74b1e326e71a3d9.zip chromium_src-b602a096b9993b30b7c8b9d3d74b1e326e71a3d9.tar.gz chromium_src-b602a096b9993b30b7c8b9d3d74b1e326e71a3d9.tar.bz2 |
Rename GetForCurrentThread() in comments to GetCurrent().
R=dmichael@chromium.org
Review URL: https://codereview.chromium.org/119493002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241960 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/api/ppb_message_loop.idl | 4 | ||||
-rw-r--r-- | ppapi/c/ppb_message_loop.h | 4 | ||||
-rw-r--r-- | ppapi/cpp/message_loop.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/ppapi/api/ppb_message_loop.idl b/ppapi/api/ppb_message_loop.idl index 0adc0b3..73ad14d 100644 --- a/ppapi/api/ppb_message_loop.idl +++ b/ppapi/api/ppb_message_loop.idl @@ -58,8 +58,8 @@ label Chrome { * The main thread has an implicitly created message loop. The main thread is * the thread where PPP_InitializeModule and PPP_Instance functions are called. * You can retrieve a reference to this message loop by calling - * GetForMainThread() or, if your code is on the main thread, - * GetForCurrentThread() will also work. + * GetForMainThread() or, if your code is on the main thread, GetCurrent() will + * also work. * * Some special threads created by the system can not have message loops. In * particular, the background thread created for audio processing has this diff --git a/ppapi/c/ppb_message_loop.h b/ppapi/c/ppb_message_loop.h index 0ddce16..26725bc 100644 --- a/ppapi/c/ppb_message_loop.h +++ b/ppapi/c/ppb_message_loop.h @@ -76,8 +76,8 @@ * The main thread has an implicitly created message loop. The main thread is * the thread where PPP_InitializeModule and PPP_Instance functions are called. * You can retrieve a reference to this message loop by calling - * GetForMainThread() or, if your code is on the main thread, - * GetForCurrentThread() will also work. + * GetForMainThread() or, if your code is on the main thread, GetCurrent() will + * also work. * * Some special threads created by the system can not have message loops. In * particular, the background thread created for audio processing has this diff --git a/ppapi/cpp/message_loop.h b/ppapi/cpp/message_loop.h index c1e217b..6ae3746 100644 --- a/ppapi/cpp/message_loop.h +++ b/ppapi/cpp/message_loop.h @@ -63,8 +63,8 @@ class InstanceHandle; /// The main thread has an implicitly created message loop. The main thread is /// the thread where PPP_InitializeModule and PPP_Instance functions are called. /// You can retrieve a reference to this message loop by calling -/// GetForMainThread() or, if your code is on the main thread, -/// GetForCurrentThread() will also work. +/// GetForMainThread() or, if your code is on the main thread, GetCurrent() will +/// also work. /// /// Some special threads created by the system can not have message loops. In /// particular, the background thread created for audio processing has this |