Index: chrome/browser/ui/views/password_generation_bubble_view.h |
diff --git a/chrome/browser/ui/views/password_generation_bubble_view.h b/chrome/browser/ui/views/password_generation_bubble_view.h |
deleted file mode 100644 |
index 8e1deeff7672ed4cbfdb952f9b858b9e418e2c86..0000000000000000000000000000000000000000 |
--- a/chrome/browser/ui/views/password_generation_bubble_view.h |
+++ /dev/null |
@@ -1,107 +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_VIEWS_PASSWORD_GENERATION_BUBBLE_VIEW_H_ |
-#define CHROME_BROWSER_UI_VIEWS_PASSWORD_GENERATION_BUBBLE_VIEW_H_ |
- |
-#include "base/basictypes.h" |
-#include "components/autofill/core/common/password_form.h" |
-#include "components/autofill/core/common/password_generation_util.h" |
-#include "ui/gfx/rect.h" |
-#include "ui/views/bubble/bubble_delegate.h" |
-#include "ui/views/controls/button/button.h" |
-#include "ui/views/controls/textfield/textfield_controller.h" |
-#include "ui/views/view.h" |
- |
-namespace autofill { |
-class PasswordGenerator; |
-} |
- |
-namespace content { |
-class RenderViewHost; |
-} |
- |
-namespace views { |
-class ImageButton; |
-class Label; |
-class LabelButton; |
-} |
- |
-namespace password_manager { |
-class PasswordManager; |
-} |
- |
-// PasswordGenerationBubbleView is a bubble used to show possible generated |
-// passwords to users. It is set in the 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 PasswordGenerationBubbleView : public views::BubbleDelegateView, |
- public views::ButtonListener, |
- public views::TextfieldController { |
- public: |
- PasswordGenerationBubbleView( |
- const autofill::PasswordForm& form, |
- const gfx::Rect& anchor_rect, |
- views::View* anchor_view, |
- content::RenderViewHost* render_view_host, |
- password_manager::PasswordManager* password_manager, |
- autofill::PasswordGenerator* password_generator, |
- ui::ThemeProvider* theme_provider); |
- virtual ~PasswordGenerationBubbleView(); |
- |
- // views::View |
- virtual gfx::Size GetPreferredSize() const OVERRIDE; |
- virtual void Layout() OVERRIDE; |
- |
- private: |
- // views::BubbleDelegateView |
- virtual void Init() OVERRIDE; |
- virtual gfx::Rect GetAnchorRect() const OVERRIDE; |
- virtual void WindowClosing() OVERRIDE; |
- |
- // views::ButtonListener |
- virtual void ButtonPressed(views::Button* sender, |
- const ui::Event& event) OVERRIDE; |
- |
- // views::TextfieldController |
- virtual void ContentsChanged(views::Textfield* sender, |
- const base::string16& new_contents) OVERRIDE; |
- virtual bool HandleKeyEvent(views::Textfield* sender, |
- const ui::KeyEvent& key_event) OVERRIDE; |
- |
- // views::WidgetDelegate |
- virtual views::View* GetInitiallyFocusedView() OVERRIDE; |
- |
- // Subviews |
- views::Label* title_label_; |
- views::LabelButton* accept_button_; |
- views::Textfield* textfield_; |
- views::ImageButton* regenerate_button_; |
- views::View* textfield_wrapper_; |
- |
- // The form associated with the password field(s) that we are generated. |
- autofill::PasswordForm form_; |
- |
- // Location that the bubble points to |
- gfx::Rect anchor_rect_; |
- |
- // RenderViewHost associated with the button that spawned this bubble. |
- content::RenderViewHost* render_view_host_; |
- |
- // PasswordManager associated with this tab. |
- password_manager::PasswordManager* password_manager_; |
- |
- // Object to generate passwords. The class won't take the ownership of it. |
- autofill::PasswordGenerator* password_generator_; |
- |
- // Theme provider used to draw the regenerate button. |
- ui::ThemeProvider* theme_provider_; |
- |
- // Store stats on the users actions for logging. |
- autofill::password_generation::PasswordGenerationActions actions_; |
- |
- DISALLOW_COPY_AND_ASSIGN(PasswordGenerationBubbleView); |
-}; |
- |
-#endif // CHROME_BROWSER_UI_VIEWS_PASSWORD_GENERATION_BUBBLE_VIEW_H_ |