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

Unified Diff: chrome/browser/ui/views/apps/shaped_app_window_targeter.h

Issue 171003004: Extract Chrome-specific code from NativeAppWindowViews (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win, clang (split_native_app_window) Created 6 years, 10 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: chrome/browser/ui/views/apps/shaped_app_window_targeter.h
diff --git a/chrome/browser/ui/views/apps/shaped_app_window_targeter.h b/chrome/browser/ui/views/apps/shaped_app_window_targeter.h
deleted file mode 100644
index 144a986343b0520e9a030fd1993ab4d9b1def6f8..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/views/apps/shaped_app_window_targeter.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2014 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_BROWSER_UI_VIEWS_APPS_SHAPED_APP_WINDOW_TARGETER_H_
-#define CHROME_BROWSER_UI_VIEWS_APPS_SHAPED_APP_WINDOW_TARGETER_H_
-
-#include "ui/wm/public/masked_window_targeter.h"
-
-class NativeAppWindowViews;
-
-class ShapedAppWindowTargeter : public wm::MaskedWindowTargeter {
- public:
- ShapedAppWindowTargeter(aura::Window* window,
- NativeAppWindowViews* app_window);
- virtual ~ShapedAppWindowTargeter();
-
- private:
- // wm::MaskedWindowTargeter:
- virtual bool GetHitTestMask(aura::Window* window,
- gfx::Path* mask) const OVERRIDE;
-
- NativeAppWindowViews* app_window_;
-
- DISALLOW_COPY_AND_ASSIGN(ShapedAppWindowTargeter);
-};
-
-#endif // CHROME_BROWSER_UI_VIEWS_APPS_SHAPED_APP_WINDOW_TARGETER_H_

Powered by Google App Engine
This is Rietveld 408576698