Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(550)

Side by Side Diff: chrome/browser/ui/webui/signin/inline_login_handler_impl.cc

Issue 345533005: Parse extra parameters on x-chrome-manage-accounts header (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 <string> 7 #include <string>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 int index = tab_strip_model->GetIndexOfWebContents(tab); 378 int index = tab_strip_model->GetIndexOfWebContents(tab);
379 if (index != TabStripModel::kNoTab) { 379 if (index != TabStripModel::kNoTab) {
380 tab_strip_model->ExecuteContextMenuCommand( 380 tab_strip_model->ExecuteContextMenuCommand(
381 index, TabStripModel::CommandCloseTab); 381 index, TabStripModel::CommandCloseTab);
382 } 382 }
383 } 383 }
384 384
385 if (show_account_management) { 385 if (show_account_management) {
386 browser->window()->ShowAvatarBubbleFromAvatarButton( 386 browser->window()->ShowAvatarBubbleFromAvatarButton(
387 BrowserWindow::AVATAR_BUBBLE_MODE_ACCOUNT_MANAGEMENT, 387 BrowserWindow::AVATAR_BUBBLE_MODE_ACCOUNT_MANAGEMENT,
388 signin::GAIA_SERVICE_TYPE_NONE); 388 signin::ManageAccountsParams());
389 } 389 }
390 } 390 }
391 } 391 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/profiles/profile_chooser_view.cc ('k') | chrome/browser/ui/webui/sync_setup_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698