| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #ifndef CHROME_UTILITY_UTILITY_MESSAGE_HANDLER_H_ | 5 #ifndef CHROME_UTILITY_UTILITY_MESSAGE_HANDLER_H_ |
| 6 #define CHROME_UTILITY_UTILITY_MESSAGE_HANDLER_H_ | 6 #define CHROME_UTILITY_UTILITY_MESSAGE_HANDLER_H_ |
| 7 | 7 |
| 8 namespace IPC { | 8 namespace IPC { |
| 9 class Message; | 9 class Message; |
| 10 } | 10 } |
| 11 | 11 |
| 12 namespace chrome { | |
| 13 | |
| 14 class UtilityMessageHandler { | 12 class UtilityMessageHandler { |
| 15 public: | 13 public: |
| 16 virtual ~UtilityMessageHandler() {} | 14 virtual ~UtilityMessageHandler() {} |
| 17 | 15 |
| 18 // Called when a message is received. Returns true iff the message was | 16 // Called when a message is received. Returns true iff the message was |
| 19 // handled. | 17 // handled. |
| 20 virtual bool OnMessageReceived(const IPC::Message& message) = 0; | 18 virtual bool OnMessageReceived(const IPC::Message& message) = 0; |
| 21 }; | 19 }; |
| 22 | 20 |
| 23 } // namespace chrome | |
| 24 | |
| 25 #endif // CHROME_UTILITY_UTILITY_MESSAGE_HANDLER_H_ | 21 #endif // CHROME_UTILITY_UTILITY_MESSAGE_HANDLER_H_ |
| 26 | 22 |
| OLD | NEW |