Commit bff6bf9f authored by Mitsuru Oshima's avatar Mitsuru Oshima Committed by Commit Bot

Fix typo (Maxmize > Maximize)

cros side change:
https://chromium-review.googlesource.com/c/chromiumos/platform/tast-tests/+/1861131

Bug: 1014218
Test: None
Change-Id: I0caf2f9ae4f4fb0d84a9c09642bcab78294bce0e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1861138Reviewed-by: default avatarSteven Bennetts <stevenjb@chromium.org>
Reviewed-by: default avatarXiaoqian Dai <xdai@chromium.org>
Commit-Queue: Mitsuru Oshima <oshima@chromium.org>
Cr-Commit-Position: refs/heads/master@{#706678}
parent 93e55cb6
......@@ -345,7 +345,7 @@ ash::WindowStateType GetExpectedWindowState(
switch (event_type) {
case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTNORMAL:
return ash::WindowStateType::kNormal;
case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTMAXMIZE:
case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTMAXIMIZE:
return ash::WindowStateType::kMaximized;
case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTMINIMIZE:
return ash::WindowStateType::kMinimized;
......@@ -365,7 +365,7 @@ ash::WMEventType ToWMEventType(api::autotest_private::WMEventType event_type) {
switch (event_type) {
case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTNORMAL:
return ash::WMEventType::WM_EVENT_NORMAL;
case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTMAXMIZE:
case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTMAXIMIZE:
return ash::WMEventType::WM_EVENT_MAXIMIZE;
case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTMINIMIZE:
return ash::WMEventType::WM_EVENT_MINIMIZE;
......
......@@ -63,7 +63,7 @@ namespace autotestPrivate {
// set in the future.
enum WMEventType {
WMEventNormal,
WMEventMaxmize,
WMEventMaximize,
WMEventMinimize,
WMEventFullscreen,
WMEventSnapLeft,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment