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

Unified Diff: chrome/browser/ui/gtk/manage_passwords_bubble_gtk.h

Issue 231733005: Delete the GTK+ port of Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remerge to ToT Created 6 years, 8 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/gtk/manage_passwords_bubble_gtk.h
diff --git a/chrome/browser/ui/gtk/manage_passwords_bubble_gtk.h b/chrome/browser/ui/gtk/manage_passwords_bubble_gtk.h
deleted file mode 100644
index ae8af170dbba2faf2fabc2446008525c3995f07f..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/gtk/manage_passwords_bubble_gtk.h
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright 2013 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_GTK_MANAGE_PASSWORDS_BUBBLE_GTK_H_
-#define CHROME_BROWSER_UI_GTK_MANAGE_PASSWORDS_BUBBLE_GTK_H_
-
-#include <gtk/gtk.h>
-
-#include "base/basictypes.h"
-#include "chrome/browser/ui/gtk/bubble/bubble_gtk.h"
-
-typedef struct _GtkWidget GtkWidget;
-
-class FullscreenController;
-
-namespace content {
-class WebContents;
-}
-
-class ManagePasswordsBubbleGtk {
- public:
- // Shows the manage passwords bubble below the |manage_passwords_icon_widget|
- // with an arrow pointing at the icon. If we are in full screen mode the
- // bubble will be positioned in the top right of corner of the widget with no
- // arrow.
- static void ShowBubble(content::WebContents* web_contents);
-
- // Whether the manage passwords bubble is currently showing.
- static bool IsShowing();
-
- // Closes the manage passwords bubble (if there is one).
- static void CloseBubble();
-
- private:
- ManagePasswordsBubbleGtk(GtkWidget* anchor,
- content::WebContents* web_contents,
- FullscreenController* fullscreen_controller);
-
- virtual ~ManagePasswordsBubbleGtk();
-
- // Closes the manage password bubble.
- void Close();
-
- // Notified when the bubble is destroyed so this instance can be deleted.
- CHROMEGTK_CALLBACK_0(ManagePasswordsBubbleGtk, void, OnDestroy);
-
- // Fired when the save button is clicked.
- CHROMEGTK_CALLBACK_0(ManagePasswordsBubbleGtk, void, OnSaveButtonClicked);
-
- // Fired when the not now button is clicked.
- CHROMEGTK_CALLBACK_0(ManagePasswordsBubbleGtk, void, OnNotNowButtonClicked);
-
- // The WebContents for the page where the manage passwords bubble is
- // displayed.
- content::WebContents* web_contents_;
-
- // The BubbleGtk object containing the manage passwords bubble's content.
- BubbleGtk* bubble_;
-
- DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleGtk);
-};
-
-#endif // CHROME_BROWSER_UI_GTK_MANAGE_PASSWORDS_BUBBLE_GTK_H_

Powered by Google App Engine
This is Rietveld 408576698