Index: chrome/browser/automation/testing_automation_provider_mac.mm |
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 0000000000000000000000000000000000000000..ce616580c868185ae1ca4fda7eb153a726d86ed3 |
--- /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(); |
+} |
+ |