| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 <windows.h> | 5 #include <windows.h> |
| 6 #include <commctrl.h> | 6 #include <commctrl.h> |
| 7 | 7 |
| 8 #include <cstdint> | 8 #include <cstdint> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 SWP_NOMOVE | SWP_NOSIZE)) { | 216 SWP_NOMOVE | SWP_NOSIZE)) { |
| 217 PLOG(ERROR) << "SetWindowPos() failed"; | 217 PLOG(ERROR) << "SetWindowPos() failed"; |
| 218 } | 218 } |
| 219 } | 219 } |
| 220 | 220 |
| 221 return S_OK; | 221 return S_OK; |
| 222 } | 222 } |
| 223 | 223 |
| 224 } // namespace | 224 } // namespace |
| 225 | 225 |
| 226 // static | 226 std::unique_ptr<It2MeConfirmationDialog> |
| 227 std::unique_ptr<It2MeConfirmationDialog> It2MeConfirmationDialog::Create() { | 227 It2MeConfirmationDialogFactory::Create() { |
| 228 return base::MakeUnique<It2MeConfirmationDialogWin>(); | 228 return base::MakeUnique<It2MeConfirmationDialogWin>(); |
| 229 } | 229 } |
| 230 | 230 |
| 231 } // namespace remoting | 231 } // namespace remoting |
| OLD | NEW |