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

Side by Side Diff: remoting/host/win/rdp_client.cc

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream Created 3 years, 7 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "remoting/host/win/rdp_client.h" 5 #include "remoting/host/win/rdp_client.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 8
9 #include <cstdint> 9 #include <cstdint>
10 10
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/bind_helpers.h" 12 #include "base/bind_helpers.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "base/message_loop/message_loop.h"
15 #include "base/numerics/safe_conversions.h" 16 #include "base/numerics/safe_conversions.h"
16 #include "base/single_thread_task_runner.h" 17 #include "base/single_thread_task_runner.h"
17 #include "net/base/ip_address.h" 18 #include "net/base/ip_address.h"
18 #include "net/base/ip_endpoint.h" 19 #include "net/base/ip_endpoint.h"
19 #include "remoting/base/typed_buffer.h" 20 #include "remoting/base/typed_buffer.h"
20 #include "remoting/host/screen_resolution.h" 21 #include "remoting/host/screen_resolution.h"
21 #include "remoting/host/win/rdp_client_window.h" 22 #include "remoting/host/win/rdp_client_window.h"
22 23
23 namespace remoting { 24 namespace remoting {
24 25
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 } 239 }
239 240
240 if (event_handler_) { 241 if (event_handler_) {
241 RdpClient::EventHandler* event_handler = event_handler_; 242 RdpClient::EventHandler* event_handler = event_handler_;
242 event_handler_ = nullptr; 243 event_handler_ = nullptr;
243 event_handler->OnRdpClosed(); 244 event_handler->OnRdpClosed();
244 } 245 }
245 } 246 }
246 247
247 } // namespace remoting 248 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698