[email protected] | 94fbaa4 | 2011-09-07 20:09:54 | [diff] [blame] | 1 | // 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 | |
| 9 | void TestingAutomationProvider::ActivateWindow(int handle) { |
| 10 | // TODO(beng): |
| 11 | NOTIMPLEMENTED(); |
| 12 | } |
| 13 | |
| 14 | void TestingAutomationProvider::IsWindowMaximized(int handle, |
| 15 | bool* is_maximized, |
| 16 | bool* success) { |
| 17 | // TODO(beng): |
| 18 | NOTIMPLEMENTED(); |
| 19 | } |
| 20 | |
| 21 | void TestingAutomationProvider::TerminateSession(int handle, bool* success) { |
| 22 | // TODO(beng): |
| 23 | NOTIMPLEMENTED(); |
| 24 | } |
| 25 | |
| 26 | void TestingAutomationProvider::GetWindowBounds(int handle, |
| 27 | gfx::Rect* bounds, |
| 28 | bool* success) { |
| 29 | // TODO(beng): |
| 30 | NOTIMPLEMENTED(); |
| 31 | } |
| 32 | |
| 33 | void TestingAutomationProvider::SetWindowBounds(int handle, |
| 34 | const gfx::Rect& bounds, |
| 35 | bool* success) { |
| 36 | // TODO(beng): |
| 37 | NOTIMPLEMENTED(); |
| 38 | } |
| 39 | |
| 40 | void TestingAutomationProvider::SetWindowVisible(int handle, |
| 41 | bool visible, |
| 42 | bool* result) { |
| 43 | // TODO(beng): |
| 44 | NOTIMPLEMENTED(); |
| 45 | } |
| 46 | |
| 47 | void TestingAutomationProvider::GetWindowTitle(int handle, string16* text) { |
| 48 | // TODO(beng): |
| 49 | NOTIMPLEMENTED(); |
| 50 | } |
| 51 | |