blob: ce616580c868185ae1ca4fda7eb153a726d86ed3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (c) 2010 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) {
NOTIMPLEMENTED();
}
void TestingAutomationProvider::IsWindowMaximized(int handle,
bool* is_maximized,
bool* success) {
*success = false;
NOTIMPLEMENTED();
}
|