diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-11 22:41:50 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-11 22:41:50 +0000 |
commit | faf06b03994d6a07f9799224d0732daed6919641 (patch) | |
tree | 703a44121c4f1670678a27436f18956909586084 /ppapi | |
parent | 941fdc075cb39ebdedef5029e539ff99cb6d3c51 (diff) | |
download | chromium_src-faf06b03994d6a07f9799224d0732daed6919641.zip chromium_src-faf06b03994d6a07f9799224d0732daed6919641.tar.gz chromium_src-faf06b03994d6a07f9799224d0732daed6919641.tar.bz2 |
Fix line endings. No code change.
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10055004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/proxy/ppb_instance_proxy.h | 4 | ||||
-rw-r--r-- | ppapi/shared_impl/ppb_instance_shared.cc | 4 | ||||
-rw-r--r-- | ppapi/shared_impl/ppb_instance_shared.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/ppapi/proxy/ppb_instance_proxy.h b/ppapi/proxy/ppb_instance_proxy.h index a6efc50..fdbeecb 100644 --- a/ppapi/proxy/ppb_instance_proxy.h +++ b/ppapi/proxy/ppb_instance_proxy.h @@ -102,8 +102,8 @@ class PPB_Instance_Proxy : public InterfaceProxy, virtual void PostMessage(PP_Instance instance, PP_Var message) OVERRIDE; virtual PP_Bool SetCursor(PP_Instance instance, PP_MouseCursor_Type type, - PP_Resource image,
- const PP_Point* hot_spot) OVERRIDE;
+ PP_Resource image, + const PP_Point* hot_spot) OVERRIDE; virtual int32_t LockMouse(PP_Instance instance, PP_CompletionCallback callback) OVERRIDE; virtual void UnlockMouse(PP_Instance instance) OVERRIDE; diff --git a/ppapi/shared_impl/ppb_instance_shared.cc b/ppapi/shared_impl/ppb_instance_shared.cc index 255a92e..22e263a 100644 --- a/ppapi/shared_impl/ppb_instance_shared.cc +++ b/ppapi/shared_impl/ppb_instance_shared.cc @@ -56,8 +56,8 @@ int32_t PPB_Instance_Shared::ValidateRequestInputEvents( } bool PPB_Instance_Shared::ValidateSetCursorParams(PP_MouseCursor_Type type, - PP_Resource image,
- const PP_Point* hot_spot) {
+ PP_Resource image, + const PP_Point* hot_spot) { if (static_cast<int>(type) < static_cast<int>(PP_MOUSECURSOR_TYPE_CUSTOM) || static_cast<int>(type) > static_cast<int>(PP_MOUSECURSOR_TYPE_GRABBING)) return false; // Cursor type out of range. diff --git a/ppapi/shared_impl/ppb_instance_shared.h b/ppapi/shared_impl/ppb_instance_shared.h index 8260a78..385d805 100644 --- a/ppapi/shared_impl/ppb_instance_shared.h +++ b/ppapi/shared_impl/ppb_instance_shared.h @@ -31,8 +31,8 @@ class PPAPI_SHARED_EXPORT PPB_Instance_Shared int32_t ValidateRequestInputEvents(bool is_filtering, uint32_t event_classes); bool ValidateSetCursorParams(PP_MouseCursor_Type type, - PP_Resource image,
- const PP_Point* hot_spot);
+ PP_Resource image, + const PP_Point* hot_spot); }; } // namespace ppapi |