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

Side by Side Diff: remoting/host/it2me/it2me_confirmation_dialog_chromeos.cc

Issue 1547473005: Switch to standard integer types in remoting/host/. (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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "base/bind.h" 5 #include "base/bind.h"
6 #include "base/callback_helpers.h" 6 #include "base/callback_helpers.h"
7 #include "base/location.h" 7 #include "base/location.h"
8 #include "base/macros.h"
8 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
9 #include "base/single_thread_task_runner.h" 10 #include "base/single_thread_task_runner.h"
10 #include "base/thread_task_runner_handle.h" 11 #include "base/thread_task_runner_handle.h"
11 #include "remoting/base/string_resources.h" 12 #include "remoting/base/string_resources.h"
12 #include "remoting/host/chromeos/message_box.h" 13 #include "remoting/host/chromeos/message_box.h"
13 #include "remoting/host/it2me/it2me_confirmation_dialog.h" 14 #include "remoting/host/it2me/it2me_confirmation_dialog.h"
14 #include "ui/base/l10n/l10n_util.h" 15 #include "ui/base/l10n/l10n_util.h"
15 16
16 namespace remoting { 17 namespace remoting {
17 18
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 base::ResetAndReturn(&callback_).Run(result == MessageBox::OK ? 58 base::ResetAndReturn(&callback_).Run(result == MessageBox::OK ?
58 Result::OK : Result::CANCEL); 59 Result::OK : Result::CANCEL);
59 } 60 }
60 61
61 scoped_ptr<It2MeConfirmationDialog> It2MeConfirmationDialogFactory::Create() { 62 scoped_ptr<It2MeConfirmationDialog> It2MeConfirmationDialogFactory::Create() {
62 return scoped_ptr<It2MeConfirmationDialog>( 63 return scoped_ptr<It2MeConfirmationDialog>(
63 new It2MeConfirmationDialogChromeOS()); 64 new It2MeConfirmationDialogChromeOS());
64 } 65 }
65 66
66 } // namespace remoting 67 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/it2me/it2me_confirmation_dialog.cc ('k') | remoting/host/it2me/it2me_confirmation_dialog_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698