| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 MOJO_PUBLIC_CPP_BINDINGS_MESSAGE_HEADER_VALIDATOR_H_ | 5 #ifndef MOJO_PUBLIC_CPP_BINDINGS_MESSAGE_HEADER_VALIDATOR_H_ |
| 6 #define MOJO_PUBLIC_CPP_BINDINGS_MESSAGE_HEADER_VALIDATOR_H_ | 6 #define MOJO_PUBLIC_CPP_BINDINGS_MESSAGE_HEADER_VALIDATOR_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" |
| 9 #include "mojo/public/cpp/bindings/bindings_export.h" |
| 8 #include "mojo/public/cpp/bindings/message.h" | 10 #include "mojo/public/cpp/bindings/message.h" |
| 9 | 11 |
| 10 namespace mojo { | 12 namespace mojo { |
| 11 | 13 |
| 12 class MessageHeaderValidator : public MessageReceiver { | 14 class MOJO_CPP_BINDINGS_EXPORT MessageHeaderValidator |
| 15 : NON_EXPORTED_BASE(public MessageReceiver) { |
| 13 public: | 16 public: |
| 14 MessageHeaderValidator(); | 17 MessageHeaderValidator(); |
| 15 explicit MessageHeaderValidator(const std::string& description); | 18 explicit MessageHeaderValidator(const std::string& description); |
| 16 | 19 |
| 17 // Sets the description associated with this validator. Used for reporting | 20 // Sets the description associated with this validator. Used for reporting |
| 18 // more detailed validation errors. | 21 // more detailed validation errors. |
| 19 void SetDescription(const std::string& description); | 22 void SetDescription(const std::string& description); |
| 20 | 23 |
| 21 bool Accept(Message* message) override; | 24 bool Accept(Message* message) override; |
| 22 | 25 |
| 23 private: | 26 private: |
| 24 std::string description_; | 27 std::string description_; |
| 25 }; | 28 }; |
| 26 | 29 |
| 27 } // namespace mojo | 30 } // namespace mojo |
| 28 | 31 |
| 29 #endif // MOJO_PUBLIC_CPP_BINDINGS_MESSAGE_HEADER_VALIDATOR_H_ | 32 #endif // MOJO_PUBLIC_CPP_BINDINGS_MESSAGE_HEADER_VALIDATOR_H_ |
| OLD | NEW |