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

Unified Diff: chrome/browser/ui/panels/native_panel_cocoa.h

Issue 10908153: [Panel refactor] Deprecate old panels. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix views compile, no need to delete extra mac menu items cuz not using browser command updater any… Created 8 years, 3 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/panels/native_panel_cocoa.h
diff --git a/chrome/browser/ui/panels/native_panel_cocoa.h b/chrome/browser/ui/panels/native_panel_cocoa.h
deleted file mode 100644
index 4036ab14a4d223476caeb2a4ef700106b65f756b..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/panels/native_panel_cocoa.h
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) 2012 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_PANELS_NATIVE_PANEL_COCOA_H_
-#define CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_COCOA_H_
-
-#include "chrome/browser/ui/panels/native_panel.h"
-
-// Cocoa NativePanel interface used by the PanelWindowControllerCocoa class
-// as its C++ window shim. I wish I had a "friend @class" construct to make
-// this interface non-public.
-class NativePanelCocoa : public NativePanel {
- public:
- virtual ~NativePanelCocoa() {}
-
- virtual Panel* panel() const = 0;
-
- // Callback from cocoa panel window controller that native window was actually
- // closed. The window may not close right away because of onbeforeunload
- // handlers.
- virtual void DidCloseNativeWindow() = 0;
-};
-
-#endif // CHROME_BROWSER_UI_PANELS_NATIVE_PANEL_H_

Powered by Google App Engine
This is Rietveld 408576698