diff options
author | mihaip@chromium.org <mihaip@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-12 22:48:21 +0000 |
---|---|---|
committer | mihaip@chromium.org <mihaip@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-12 22:48:21 +0000 |
commit | 66c509392c1d1e27ab33a571670fd912aa2479a6 (patch) | |
tree | b21d3c66a394e9b665c3357dab668e96536ae7a7 /webkit/glue/webthemeengine_impl_linux.cc | |
parent | 8ddfcd06beb7e7276cb63cdfb3091b385c1011db (diff) | |
download | chromium_src-66c509392c1d1e27ab33a571670fd912aa2479a6.zip chromium_src-66c509392c1d1e27ab33a571670fd912aa2479a6.tar.gz chromium_src-66c509392c1d1e27ab33a571670fd912aa2479a6.tar.bz2 |
Fix PartScrollbarHoriztonalTrack typo now that we've rolled to pick up
http://trac.webkit.org/changeset/75292.
BUG=none
TEST=trybot
Review URL: http://codereview.chromium.org/6208004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71249 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webthemeengine_impl_linux.cc')
-rw-r--r-- | webkit/glue/webthemeengine_impl_linux.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/webthemeengine_impl_linux.cc b/webkit/glue/webthemeengine_impl_linux.cc index d5cc9b4..4ac6f75 100644 --- a/webkit/glue/webthemeengine_impl_linux.cc +++ b/webkit/glue/webthemeengine_impl_linux.cc @@ -34,7 +34,7 @@ static gfx::NativeThemeLinux::Part NativeThemePart( return gfx::NativeThemeLinux::kScrollbarHorizontalThumb; case WebKit::WebThemeEngine::PartScrollbarVerticalThumb: return gfx::NativeThemeLinux::kScrollbarVerticalThumb; - case WebKit::WebThemeEngine::PartScrollbarHoriztonalTrack: + case WebKit::WebThemeEngine::PartScrollbarHorizontalTrack: return gfx::NativeThemeLinux::kScrollbarHorizontalTrack; case WebKit::WebThemeEngine::PartScrollbarVerticalTrack: return gfx::NativeThemeLinux::kScrollbarVerticalTrack; @@ -64,7 +64,7 @@ static void GetNativeThemeExtraParams( WebKit::WebThemeEngine::State state, const WebKit::WebThemeEngine::ExtraParams* extra_params, gfx::NativeThemeLinux::ExtraParams* native_theme_extra_params) { - if (part == WebKit::WebThemeEngine::PartScrollbarHoriztonalTrack || + if (part == WebKit::WebThemeEngine::PartScrollbarHorizontalTrack || part == WebKit::WebThemeEngine::PartScrollbarVerticalTrack) { native_theme_extra_params->scrollbar_track.track_x = extra_params->scrollbarTrack.trackX; |