summaryrefslogtreecommitdiffstats
path: root/chrome/browser/automation/testing_automation_provider_mac.mm
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/automation/testing_automation_provider_mac.mm')
-rw-r--r--chrome/browser/automation/testing_automation_provider_mac.mm19
1 files changed, 19 insertions, 0 deletions
diff --git a/chrome/browser/automation/testing_automation_provider_mac.mm b/chrome/browser/automation/testing_automation_provider_mac.mm
new file mode 100644
index 0000000..ce61658
--- /dev/null
+++ b/chrome/browser/automation/testing_automation_provider_mac.mm
@@ -0,0 +1,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();
+}
+