Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1313)

Unified Diff: chrome/test/automation/window_proxy.h

Issue 223163003: Remove the remaining automation-based tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/automation/tab_proxy.cc ('k') | chrome/test/automation/window_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/automation/window_proxy.h
===================================================================
--- chrome/test/automation/window_proxy.h (revision 261647)
+++ chrome/test/automation/window_proxy.h (working copy)
@@ -1,52 +0,0 @@
-// 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.
-
-#ifndef CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__
-#define CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__
-
-#include "build/build_config.h"
-
-#if defined(OS_WIN)
-#include <windows.h>
-#endif
-
-#include "base/strings/string16.h"
-#include "base/threading/thread.h"
-#include "chrome/test/automation/automation_handle_tracker.h"
-
-class BrowserProxy;
-class WindowProxy;
-
-namespace gfx {
-class Rect;
-}
-
-// This class presents the interface to actions that can be performed on a given
-// window. Note that this object can be invalidated at any time if the
-// corresponding window in the app is closed. In that case, any subsequent
-// calls will return false immediately.
-class WindowProxy : public AutomationResourceProxy {
- public:
- WindowProxy(AutomationMessageSender* sender,
- AutomationHandleTracker* tracker,
- int handle)
- : AutomationResourceProxy(tracker, sender, handle) {}
-
- // Gets the bounds (in window coordinates) that correspond to the view with
- // the given ID in this window. Returns true if bounds could be obtained.
- // If |screen_coordinates| is true, the bounds are returned in the coordinates
- // of the screen, if false in the coordinates of the browser.
- bool GetViewBounds(int view_id, gfx::Rect* bounds, bool screen_coordinates);
-
- // Sets the position and size of the window. Returns true if setting the
- // bounds was successful.
- bool SetBounds(const gfx::Rect& bounds);
-
- protected:
- virtual ~WindowProxy() {}
- private:
- DISALLOW_COPY_AND_ASSIGN(WindowProxy);
-};
-
-#endif // CHROME_TEST_AUTOMATION_WINDOW_PROXY_H__
« no previous file with comments | « chrome/test/automation/tab_proxy.cc ('k') | chrome/test/automation/window_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698