blob: 191dbbbb1da905ed855d70f08224de5f199bd2d6 [file] [log] [blame]
[email protected]94fbaa42011-09-07 20:09:541// Copyright (c) 2011 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/automation/testing_automation_provider.h"
6
7#include "base/logging.h"
8
9void TestingAutomationProvider::ActivateWindow(int handle) {
10 // TODO(beng):
11 NOTIMPLEMENTED();
12}
13
14void TestingAutomationProvider::IsWindowMaximized(int handle,
15 bool* is_maximized,
16 bool* success) {
17 // TODO(beng):
18 NOTIMPLEMENTED();
19}
20
21void TestingAutomationProvider::TerminateSession(int handle, bool* success) {
22 // TODO(beng):
23 NOTIMPLEMENTED();
24}
25
26void TestingAutomationProvider::GetWindowBounds(int handle,
27 gfx::Rect* bounds,
28 bool* success) {
29 // TODO(beng):
30 NOTIMPLEMENTED();
31}
32
33void TestingAutomationProvider::SetWindowBounds(int handle,
34 const gfx::Rect& bounds,
35 bool* success) {
36 // TODO(beng):
37 NOTIMPLEMENTED();
38}
39
40void TestingAutomationProvider::SetWindowVisible(int handle,
41 bool visible,
42 bool* result) {
43 // TODO(beng):
44 NOTIMPLEMENTED();
45}
46
47void TestingAutomationProvider::GetWindowTitle(int handle, string16* text) {
48 // TODO(beng):
49 NOTIMPLEMENTED();
50}
51