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

Side by Side Diff: chrome/browser/ui/views/sync/profile_signin_confirmation_dialog_views.cc

Issue 1545153002: Switch to standard integer types in chrome/browser/ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
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/views/sync/profile_signin_confirmation_dialog_views. h" 5 #include "chrome/browser/ui/views/sync/profile_signin_confirmation_dialog_views. h"
6 6
7 #include <stddef.h>
8
7 #include <algorithm> 9 #include <algorithm>
8 10
9 #include "base/strings/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.h"
10 #include "chrome/browser/ui/browser.h" 12 #include "chrome/browser/ui/browser.h"
11 #include "chrome/browser/ui/browser_navigator.h" 13 #include "chrome/browser/ui/browser_navigator.h"
12 #include "chrome/browser/ui/browser_navigator_params.h" 14 #include "chrome/browser/ui/browser_navigator_params.h"
13 #include "chrome/browser/ui/browser_window.h" 15 #include "chrome/browser/ui/browser_window.h"
14 #include "chrome/browser/ui/host_desktop.h" 16 #include "chrome/browser/ui/host_desktop.h"
15 #include "chrome/browser/ui/views/profiles/profile_chooser_view.h" 17 #include "chrome/browser/ui/views/profiles/profile_chooser_view.h"
16 #include "chrome/grit/chromium_strings.h" 18 #include "chrome/grit/chromium_strings.h"
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 views::Button* sender, 247 views::Button* sender,
246 const ui::Event& event) { 248 const ui::Event& event) {
247 DCHECK(prompt_for_new_profile_); 249 DCHECK(prompt_for_new_profile_);
248 DCHECK_EQ(continue_signin_button_, sender); 250 DCHECK_EQ(continue_signin_button_, sender);
249 if (delegate_) { 251 if (delegate_) {
250 delegate_->OnContinueSignin(); 252 delegate_->OnContinueSignin();
251 delegate_ = NULL; 253 delegate_ = NULL;
252 } 254 }
253 GetWidget()->Close(); 255 GetWidget()->Close();
254 } 256 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698