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( ...@@ -345,7 +345,7 @@ ash::WindowStateType GetExpectedWindowState(
switch (event_type) { switch (event_type) {
case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTNORMAL: case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTNORMAL:
return ash::WindowStateType::kNormal; 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; return ash::WindowStateType::kMaximized;
case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTMINIMIZE: case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTMINIMIZE:
return ash::WindowStateType::kMinimized; return ash::WindowStateType::kMinimized;
...@@ -365,7 +365,7 @@ ash::WMEventType ToWMEventType(api::autotest_private::WMEventType event_type) { ...@@ -365,7 +365,7 @@ ash::WMEventType ToWMEventType(api::autotest_private::WMEventType event_type) {
switch (event_type) { switch (event_type) {
case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTNORMAL: case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTNORMAL:
return ash::WMEventType::WM_EVENT_NORMAL; 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; return ash::WMEventType::WM_EVENT_MAXIMIZE;
case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTMINIMIZE: case api::autotest_private::WMEventType::WM_EVENT_TYPE_WMEVENTMINIMIZE:
return ash::WMEventType::WM_EVENT_MINIMIZE; return ash::WMEventType::WM_EVENT_MINIMIZE;
......
...@@ -63,7 +63,7 @@ namespace autotestPrivate { ...@@ -63,7 +63,7 @@ namespace autotestPrivate {
// set in the future. // set in the future.
enum WMEventType { enum WMEventType {
WMEventNormal, WMEventNormal,
WMEventMaxmize, WMEventMaximize,
WMEventMinimize, WMEventMinimize,
WMEventFullscreen, WMEventFullscreen,
WMEventSnapLeft, 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