| 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/webui/signin/inline_login_handler_impl.h" | 5 #include "chrome/browser/ui/webui/signin/inline_login_handler_impl.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 870 if (index != TabStripModel::kNoTab) { | 870 if (index != TabStripModel::kNoTab) { |
| 871 tab_strip_model->ExecuteContextMenuCommand( | 871 tab_strip_model->ExecuteContextMenuCommand( |
| 872 index, TabStripModel::CommandCloseTab); | 872 index, TabStripModel::CommandCloseTab); |
| 873 } | 873 } |
| 874 } | 874 } |
| 875 | 875 |
| 876 if (show_account_management) { | 876 if (show_account_management) { |
| 877 browser->window()->ShowAvatarBubbleFromAvatarButton( | 877 browser->window()->ShowAvatarBubbleFromAvatarButton( |
| 878 BrowserWindow::AVATAR_BUBBLE_MODE_ACCOUNT_MANAGEMENT, | 878 BrowserWindow::AVATAR_BUBBLE_MODE_ACCOUNT_MANAGEMENT, |
| 879 signin::ManageAccountsParams(), | 879 signin::ManageAccountsParams(), |
| 880 signin_metrics::AccessPoint::ACCESS_POINT_AVATAR_BUBBLE_SIGN_IN); | 880 signin_metrics::AccessPoint::ACCESS_POINT_AVATAR_BUBBLE_SIGN_IN, |
| 881 false); |
| 881 } | 882 } |
| 882 } | 883 } |
| 883 } | 884 } |
| OLD | NEW |