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

Unified Diff: chrome/browser/ui/gtk/password_generation_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/password_generation_bubble_gtk.h
diff --git a/chrome/browser/ui/gtk/password_generation_bubble_gtk.h b/chrome/browser/ui/gtk/password_generation_bubble_gtk.h
deleted file mode 100644
index e3d93a911468022f49bd600d087769712d065525..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/gtk/password_generation_bubble_gtk.h
+++ /dev/null
@@ -1,69 +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_GTK_PASSWORD_GENERATION_BUBBLE_GTK_H_
-#define CHROME_BROWSER_UI_GTK_PASSWORD_GENERATION_BUBBLE_GTK_H_
-
-#include <gtk/gtk.h>
-
-#include "base/basictypes.h"
-#include "chrome/browser/ui/gtk/bubble/bubble_gtk.h"
-#include "components/autofill/core/common/password_form.h"
-#include "components/autofill/core/common/password_generation_util.h"
-#include "ui/base/gtk/gtk_signal.h"
-#include "ui/gfx/rect.h"
-
-namespace autofill {
-class PasswordGenerator;
-}
-
-namespace content {
-class WebContents;
-}
-
-// PasswordGenerationBubbleGtk is a bubble use to show possible generated
-// passwords to users. It is set in page content, anchored at |anchor_rect|.
-// If the generated password is accepted by the user, the renderer associated
-// with |render_view_host| and the |password_manager| are informed.
-class PasswordGenerationBubbleGtk : public BubbleDelegateGtk {
- public:
- PasswordGenerationBubbleGtk(const gfx::Rect& anchor_rect,
- const autofill::PasswordForm& form,
- content::WebContents* web_contents,
- autofill::PasswordGenerator* password_generator);
- virtual ~PasswordGenerationBubbleGtk();
-
- // Overridden from BubbleDelegateGtk:
- virtual void BubbleClosing(BubbleGtk* bubble, bool closed_by_escape) OVERRIDE;
-
- private:
- CHROMEGTK_CALLBACK_0(PasswordGenerationBubbleGtk, void, OnDestroy);
- CHROMEGTK_CALLBACK_0(PasswordGenerationBubbleGtk, void, OnAcceptClicked);
- CHROMEGTK_CALLBACK_2(PasswordGenerationBubbleGtk, void, OnRegenerateClicked,
- GtkEntryIconPosition, GdkEvent*);
- CHROMEGTK_CALLBACK_0(PasswordGenerationBubbleGtk, void, OnPasswordEdited);
- CHROMEG_CALLBACK_0(
- PasswordGenerationBubbleGtk, void, OnLearnMoreLinkClicked, GtkButton*);
-
- BubbleGtk* bubble_;
- GtkWidget* text_field_;
-
- // Form that contains the password field that we are generating a password
- // for. Used by the password_manager_.
- autofill::PasswordForm form_;
-
- // WebContents associated with the button that spawned this bubble.
- content::WebContents* web_contents_;
-
- // Object that deals with generating passwords. The class won't take the
- // ownership of it.
- autofill::PasswordGenerator* password_generator_;
-
- // Store various status of the current living bubble.
- autofill::password_generation::PasswordGenerationActions actions_;
-
- DISALLOW_COPY_AND_ASSIGN(PasswordGenerationBubbleGtk);
-};
-
-#endif // CHROME_BROWSER_UI_GTK_PASSWORD_GENERATION_BUBBLE_GTK_H_

Powered by Google App Engine
This is Rietveld 408576698