| 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 #include "chrome/browser/ui/gtk/password_generation_bubble_gtk.h" | 5 #include "chrome/browser/ui/gtk/password_generation_bubble_gtk.h" |
| 6 | 6 |
| 7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
| 8 #include "chrome/browser/autofill/password_generator.h" | 8 #include "chrome/browser/autofill/password_generator.h" |
| 9 #include "chrome/browser/password_manager/password_manager.h" | 9 #include "chrome/browser/password_manager/password_manager.h" |
| 10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
| 11 #include "chrome/browser/ui/browser_finder.h" | 11 #include "chrome/browser/ui/browser_finder.h" |
| 12 #include "chrome/browser/ui/gtk/bubble/bubble_gtk.h" | 12 #include "chrome/browser/ui/gtk/bubble/bubble_gtk.h" |
| 13 #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h" | 13 #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h" |
| 14 #include "chrome/browser/ui/gtk/gtk_theme_service.h" | 14 #include "chrome/browser/ui/gtk/gtk_theme_service.h" |
| 15 #include "chrome/browser/ui/gtk/gtk_util.h" | 15 #include "chrome/browser/ui/gtk/gtk_util.h" |
| 16 #include "chrome/browser/ui/tab_contents/tab_contents.h" | 16 #include "chrome/browser/ui/tab_contents/tab_contents.h" |
| 17 #include "chrome/common/autofill_messages.h" | 17 #include "chrome/common/autofill_messages.h" |
| 18 #include "chrome/common/url_constants.h" | 18 #include "chrome/common/url_constants.h" |
| 19 #include "content/public/browser/render_view_host.h" | 19 #include "content/public/browser/render_view_host.h" |
| 20 #include "content/public/browser/web_contents.h" | 20 #include "content/public/browser/web_contents.h" |
| 21 #include "grit/generated_resources.h" | 21 #include "grit/generated_resources.h" |
| 22 #include "grit/theme_resources_standard.h" | 22 #include "grit/theme_resources.h" |
| 23 #include "ui/base/gtk/gtk_hig_constants.h" | 23 #include "ui/base/gtk/gtk_hig_constants.h" |
| 24 #include "ui/base/l10n/l10n_util.h" | 24 #include "ui/base/l10n/l10n_util.h" |
| 25 #include "ui/base/resource/resource_bundle.h" | 25 #include "ui/base/resource/resource_bundle.h" |
| 26 | 26 |
| 27 using content::RenderViewHost; | 27 using content::RenderViewHost; |
| 28 | 28 |
| 29 const int kContentBorder = 4; | 29 const int kContentBorder = 4; |
| 30 const int kHorizontalSpacing = 4; | 30 const int kHorizontalSpacing = 4; |
| 31 | 31 |
| 32 namespace { | 32 namespace { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 } | 131 } |
| 132 | 132 |
| 133 void PasswordGenerationBubbleGtk::OnLearnMoreLinkClicked(GtkButton* button) { | 133 void PasswordGenerationBubbleGtk::OnLearnMoreLinkClicked(GtkButton* button) { |
| 134 Browser* browser = browser::FindBrowserWithWebContents(tab_->web_contents()); | 134 Browser* browser = browser::FindBrowserWithWebContents(tab_->web_contents()); |
| 135 content::OpenURLParams params( | 135 content::OpenURLParams params( |
| 136 GURL(chrome::kAutoPasswordGenerationLearnMoreURL), content::Referrer(), | 136 GURL(chrome::kAutoPasswordGenerationLearnMoreURL), content::Referrer(), |
| 137 NEW_FOREGROUND_TAB, content::PAGE_TRANSITION_LINK, false); | 137 NEW_FOREGROUND_TAB, content::PAGE_TRANSITION_LINK, false); |
| 138 browser->OpenURL(params); | 138 browser->OpenURL(params); |
| 139 bubble_->Close(); | 139 bubble_->Close(); |
| 140 } | 140 } |
| OLD | NEW |