diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-12 06:43:23 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-12 06:43:23 +0000 |
commit | 33390ab9accc8f503a7b37b6b1533b491de2414f (patch) | |
tree | 9ddfecf4c8a4a1f1aa9f01d05a200130573dc663 | |
parent | 247b37e561b328f90e2939d75c911037aa1f82fb (diff) | |
download | chromium_src-33390ab9accc8f503a7b37b6b1533b491de2414f.zip chromium_src-33390ab9accc8f503a7b37b6b1533b491de2414f.tar.gz chromium_src-33390ab9accc8f503a7b37b6b1533b491de2414f.tar.bz2 |
Fix typo.
Review URL: http://codereview.chromium.org/4849002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65912 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | webkit/glue/plugins/pepper_graphics_2d.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/plugins/pepper_graphics_2d.cc b/webkit/glue/plugins/pepper_graphics_2d.cc index a4f9134..7ccfae5 100644 --- a/webkit/glue/plugins/pepper_graphics_2d.cc +++ b/webkit/glue/plugins/pepper_graphics_2d.cc @@ -299,7 +299,7 @@ void Graphics2D::Scroll(const PP_Rect* clip_rect, const PP_Point* amount) { int32 dx = amount->x; int32 dy = amount->y; if (dx <= -image_data_->width() || dx >= image_data_->width() || - dx <= -image_data_->height() || dy >= image_data_->height()) + dy <= -image_data_->height() || dy >= image_data_->height()) return; operation.scroll_dx = dx; |