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

Side by Side Diff: remoting/host/native_messaging/log_message_handler.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef REMOTING_HOST_NATIVE_MESSAGIN_LOG_HANDLER_H_ 5 #ifndef REMOTING_HOST_NATIVE_MESSAGIN_LOG_HANDLER_H_
6 #define REMOTING_HOST_NATIVE_MESSAGIN_LOG_HANDLER_H_ 6 #define REMOTING_HOST_NATIVE_MESSAGIN_LOG_HANDLER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/memory/scoped_ptr.h"
11 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
12 #include "base/values.h" 13 #include "base/values.h"
13 14
14 namespace remoting { 15 namespace remoting {
15 16
16 // Helper class for logging::SetLogMessageHandler to deliver log messages to 17 // Helper class for logging::SetLogMessageHandler to deliver log messages to
17 // a consistent thread in a thread-safe way and in a format suitable for sending 18 // a consistent thread in a thread-safe way and in a format suitable for sending
18 // over a Native Messaging channel. 19 // over a Native Messaging channel.
19 class LogMessageHandler { 20 class LogMessageHandler {
20 public: 21 public:
(...skipping 18 matching lines...) Expand all
39 Delegate delegate_; 40 Delegate delegate_;
40 bool suppress_logging_; 41 bool suppress_logging_;
41 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner_; 42 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner_;
42 logging::LogMessageHandlerFunction previous_log_message_handler_; 43 logging::LogMessageHandlerFunction previous_log_message_handler_;
43 base::WeakPtrFactory<LogMessageHandler> weak_ptr_factory_; 44 base::WeakPtrFactory<LogMessageHandler> weak_ptr_factory_;
44 }; 45 };
45 46
46 } // namespace remoting 47 } // namespace remoting
47 48
48 #endif 49 #endif
OLDNEW
« no previous file with comments | « remoting/host/linux/audio_pipe_reader_unittest.cc ('k') | remoting/protocol/authenticator_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698