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

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

Issue 2650443002: Webapp share dialog is not closed when client end of the connection is closed (Closed)
Patch Set: Merging changes from dependent CL Created 3 years, 9 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 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
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
OLDNEW
« no previous file with comments | « remoting/host/it2me/it2me_confirmation_dialog_proxy_unittest.cc ('k') | remoting/host/it2me/it2me_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698