OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/views/passwords/manage_passwords_icon_view.h" | 5 #include "chrome/browser/ui/views/passwords/manage_passwords_icon_view.h" |
6 | 6 |
7 #include "chrome/app/chrome_command_ids.h" | 7 #include "chrome/app/chrome_command_ids.h" |
8 #include "chrome/browser/command_updater.h" | 8 #include "chrome/browser/command_updater.h" |
9 #include "chrome/browser/ui/passwords/manage_passwords_ui_controller.h" | 9 #include "chrome/browser/ui/passwords/manage_passwords_ui_controller.h" |
10 #include "chrome/browser/ui/view_ids.h" | 10 #include "chrome/browser/ui/view_ids.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
61 } | 61 } |
62 } | 62 } |
63 | 63 |
64 bool ManagePasswordsIconView::IsBubbleShowing() const { | 64 bool ManagePasswordsIconView::IsBubbleShowing() const { |
65 return ManagePasswordsBubbleView::IsShowing(); | 65 return ManagePasswordsBubbleView::IsShowing(); |
66 } | 66 } |
67 | 67 |
68 void ManagePasswordsIconView::OnExecuting( | 68 void ManagePasswordsIconView::OnExecuting( |
69 BubbleIconView::ExecuteSource source) { | 69 BubbleIconView::ExecuteSource source) { |
70 } | 70 } |
71 | |
72 void ManagePasswordsIconView::OnMousePressSuppressed() { | |
Peter Kasting
2014/07/22 18:55:18
Instead of adding a new virtual method with the so
vasilii
2014/07/23 09:22:53
Done.
| |
73 ManagePasswordsBubbleView::CloseBubble(); | |
74 } | |
OLD | NEW |