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

Unified Diff: views/desktop/desktop_window_root_view.h

Issue 7740039: Don't activate POPUP window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 9 years, 4 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
Index: views/desktop/desktop_window_root_view.h
diff --git a/views/desktop/desktop_window_root_view.h b/views/desktop/desktop_window_root_view.h
deleted file mode 100644
index 67c74e32f0060823a6459e77dcb1ca4c9117007d..0000000000000000000000000000000000000000
--- a/views/desktop/desktop_window_root_view.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// 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.
-
-#ifndef VIEWS_DESKTOP_DESKTOP_WINDOW_ROOT_VIEW_H_
-#define VIEWS_DESKTOP_DESKTOP_WINDOW_ROOT_VIEW_H_
-
-#include "views/widget/root_view.h"
-
-namespace views {
-namespace desktop {
-
-class DesktopWindowView;
-
-class DesktopWindowRootView : public internal::RootView {
- public:
- DesktopWindowRootView(DesktopWindowView* desktop_window_view, Widget* window);
- virtual ~DesktopWindowRootView();
-
- private:
- // Overridden from RootView:
- virtual bool OnMousePressed(const MouseEvent& event) OVERRIDE;
- virtual ui::TouchStatus OnTouchEvent(const TouchEvent& event) OVERRIDE;
-
- // Activates the widget at the specified location and deactivates the
- // currently selected widget.
- void ActivateWidgetAtLocation(const gfx::Point& point);
-
- DesktopWindowView* desktop_window_view_;
-
- DISALLOW_COPY_AND_ASSIGN(DesktopWindowRootView);
-};
-
-} // namespace desktop
-} // namespace views
-
-#endif // VIEWS_DESKTOP_DESKTOP_WINDOW_ROOT_VIEW_H_

Powered by Google App Engine
This is Rietveld 408576698