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

Side by Side Diff: mojo/public/cpp/bindings/message_header_validator.h

Issue 2358133002: Turn //mojo/public/cpp/bindings and //mojo/public/cpp/system into components (Closed)
Patch Set: Fix wording Created 4 years, 2 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
« no previous file with comments | « mojo/public/cpp/bindings/message.h ('k') | mojo/public/cpp/bindings/native_struct.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/message.h ('k') | mojo/public/cpp/bindings/native_struct.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698