| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_GTK_PASSWORD_GENERATION_BUBBLE_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_PASSWORD_GENERATION_BUBBLE_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_PASSWORD_GENERATION_BUBBLE_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_PASSWORD_GENERATION_BUBBLE_GTK_H_ |
| 7 | 7 |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "chrome/browser/ui/gtk/bubble/bubble_gtk.h" | 11 #include "chrome/browser/ui/gtk/bubble/bubble_gtk.h" |
| 12 #include "components/autofill/shared/password_generation_util.h" | 12 #include "components/autofill/common/password_generation_util.h" |
| 13 #include "content/public/common/password_form.h" | 13 #include "content/public/common/password_form.h" |
| 14 #include "ui/base/gtk/gtk_signal.h" | 14 #include "ui/base/gtk/gtk_signal.h" |
| 15 #include "ui/gfx/rect.h" | 15 #include "ui/gfx/rect.h" |
| 16 | 16 |
| 17 namespace autofill { | 17 namespace autofill { |
| 18 class PasswordGenerator; | 18 class PasswordGenerator; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 class WebContents; | 22 class WebContents; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 // ownership of it. | 60 // ownership of it. |
| 61 autofill::PasswordGenerator* password_generator_; | 61 autofill::PasswordGenerator* password_generator_; |
| 62 | 62 |
| 63 // Store various status of the current living bubble. | 63 // Store various status of the current living bubble. |
| 64 autofill::password_generation::PasswordGenerationActions actions_; | 64 autofill::password_generation::PasswordGenerationActions actions_; |
| 65 | 65 |
| 66 DISALLOW_COPY_AND_ASSIGN(PasswordGenerationBubbleGtk); | 66 DISALLOW_COPY_AND_ASSIGN(PasswordGenerationBubbleGtk); |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 #endif // CHROME_BROWSER_UI_GTK_PASSWORD_GENERATION_BUBBLE_GTK_H_ | 69 #endif // CHROME_BROWSER_UI_GTK_PASSWORD_GENERATION_BUBBLE_GTK_H_ |
| OLD | NEW |