1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/automation/automation_provider.h"
#import <Cocoa/Cocoa.h>
#include "base/gfx/point.h"
#include "base/gfx/rect.h"
#include "chrome/test/automation/automation_messages.h"
void AutomationProvider::SetWindowBounds(int handle, const gfx::Rect& bounds,
bool* success) {
*success = false;
NSWindow* window = window_tracker_->GetResource(handle);
if (window) {
NSRect new_bounds = NSRectFromCGRect(bounds.ToCGRect());
// This is likely incorrect for a multiple-monitor setup; OK because this is
// used only for testing purposes.
new_bounds.origin.y = [[window screen] frame].size.height -
new_bounds.origin.y - new_bounds.size.height;
[window setFrame:new_bounds display:NO];
*success = true;
}
}
void AutomationProvider::SetWindowVisible(int handle, bool visible,
bool* result) {
*result = false;
NSWindow* window = window_tracker_->GetResource(handle);
if (window) {
if (visible) {
[window orderFront:nil];
} else {
[window orderOut:nil];
}
*result = true;
}
}
void AutomationProvider::WindowGetViewBounds(int handle, int view_id,
bool screen_coordinates,
bool* success,
gfx::Rect* bounds) {
// AutomationProxyVisibleTest claims that this is used only by Chrome Views
// which we don't use on the Mac. Is this true?
*success = false;
NOTIMPLEMENTED();
}
void AutomationProvider::ActivateWindow(int handle) { NOTIMPLEMENTED(); }
void AutomationProvider::IsWindowMaximized(int handle, bool* is_maximized,
bool* success) {
*success = false;
NOTIMPLEMENTED();
}
void AutomationProvider::GetFocusedViewID(int handle, int* view_id) {
NOTIMPLEMENTED();
}
void AutomationProvider::PrintAsync(int tab_handle) {
NOTIMPLEMENTED();
}
void AutomationProvider::SetInitialFocus(const IPC::Message& message,
int handle, bool reverse) {
NOTIMPLEMENTED();
}
void AutomationProvider::GetBookmarkBarVisibility(int handle, bool* visible,
bool* animating) {
*visible = false;
*animating = false;
NOTIMPLEMENTED();
}
void AutomationProvider::WindowSimulateDrag(int handle,
std::vector<gfx::Point> drag_path,
int flags,
bool press_escape_en_route,
IPC::Message* reply_message) {
NOTIMPLEMENTED();
AutomationMsg_WindowDrag::WriteReplyParams(reply_message, false);
Send(reply_message);
}
void AutomationProvider::TerminateSession(int handle, bool* success) {
*success = false;
NOTIMPLEMENTED();
}
void AutomationProvider::GetWindowBounds(int handle, gfx::Rect* bounds,
bool* result) {
*result = false;
NOTIMPLEMENTED();
}
|