diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-07 20:09:54 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-07 20:09:54 +0000 |
commit | 94fbaa41f59f3dcb859627b698338d133fec1eb1 (patch) | |
tree | f5ee660a40ee6fafc99eccd64a50645f57e44ea1 /chrome/browser/automation/testing_automation_provider_aura.cc | |
parent | a8ca1a99ddee3b8c1c60bddb27c0c6b4893ec92a (diff) | |
download | chromium_src-94fbaa41f59f3dcb859627b698338d133fec1eb1.zip chromium_src-94fbaa41f59f3dcb859627b698338d133fec1eb1.tar.gz chromium_src-94fbaa41f59f3dcb859627b698338d133fec1eb1.tar.bz2 |
Get chrome to link with USE_AURA
http://crbug.com/93947
TEST=none
R=sadrul
TBR=jabdelmalek for the content/webkit stubs
Review URL: http://codereview.chromium.org/7841012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99993 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/testing_automation_provider_aura.cc')
-rw-r--r-- | chrome/browser/automation/testing_automation_provider_aura.cc | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/chrome/browser/automation/testing_automation_provider_aura.cc b/chrome/browser/automation/testing_automation_provider_aura.cc new file mode 100644 index 0000000..191dbbb --- /dev/null +++ b/chrome/browser/automation/testing_automation_provider_aura.cc @@ -0,0 +1,51 @@ +// Copyright (c) 2011 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/testing_automation_provider.h" + +#include "base/logging.h" + +void TestingAutomationProvider::ActivateWindow(int handle) { + // TODO(beng): + NOTIMPLEMENTED(); +} + +void TestingAutomationProvider::IsWindowMaximized(int handle, + bool* is_maximized, + bool* success) { + // TODO(beng): + NOTIMPLEMENTED(); +} + +void TestingAutomationProvider::TerminateSession(int handle, bool* success) { + // TODO(beng): + NOTIMPLEMENTED(); +} + +void TestingAutomationProvider::GetWindowBounds(int handle, + gfx::Rect* bounds, + bool* success) { + // TODO(beng): + NOTIMPLEMENTED(); +} + +void TestingAutomationProvider::SetWindowBounds(int handle, + const gfx::Rect& bounds, + bool* success) { + // TODO(beng): + NOTIMPLEMENTED(); +} + +void TestingAutomationProvider::SetWindowVisible(int handle, + bool visible, + bool* result) { + // TODO(beng): + NOTIMPLEMENTED(); +} + +void TestingAutomationProvider::GetWindowTitle(int handle, string16* text) { + // TODO(beng): + NOTIMPLEMENTED(); +} + |