diff options
author | joth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-12 06:02:00 +0000 |
---|---|---|
committer | joth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-12 06:02:00 +0000 |
commit | 45a2adac0540de76f2b16bbe6f2408f943a54366 (patch) | |
tree | 15876f0c3181e055ac30e359ee38de71f27c7ada /android_webview/public | |
parent | 3985bc158abafb260f387f3d6add0d4477bd6137 (diff) | |
download | chromium_src-45a2adac0540de76f2b16bbe6f2408f943a54366.zip chromium_src-45a2adac0540de76f2b16bbe6f2408f943a54366.tar.gz chromium_src-45a2adac0540de76f2b16bbe6f2408f943a54366.tar.bz2 |
[Android WebView] Remove use of obsolete clip
Follow up to https://codereview.chromium.org/20234002/ - the old
representation is no longer set so remove use of it.
TBR=boliu@chromium.org
BUG=
Review URL: https://chromiumcodereview.appspot.com/22778004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216949 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/public')
-rw-r--r-- | android_webview/public/browser/draw_sw.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/android_webview/public/browser/draw_sw.h b/android_webview/public/browser/draw_sw.h index 632b970..463f59c 100644 --- a/android_webview/public/browser/draw_sw.h +++ b/android_webview/public/browser/draw_sw.h @@ -35,8 +35,6 @@ struct AwPixelInfo { float matrix[9]; // The matrix currently in effect on the canvas. int clip_rect_count; // Number of rects in |clip_rects|. int* clip_rects; // Clip area: 4 ints per rect in {x,y,w,h} format. - void* clip_region; // TODO(joth): remove clip_region and clip_region_size. - size_t clip_region_size; // NOTE: If you add more members, bump kAwPixelInfoVersion. }; |