Mac: Fix performance issues with remote CoreAnimation
[chromium-blink-merge.git] / components / copresence / test / fake_directive_handler.h
blob2846806bdd258e3ac48be856a839af198ca4dcc4
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
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_COPRESENCE_TEST_FAKE_DIRECTIVE_HANDLER_H_
6 #define COMPONENTS_COPRESENCE_TEST_FAKE_DIRECTIVE_HANDLER_H_
8 #include <string>
9 #include <vector>
11 #include "components/copresence/handlers/directive_handler.h"
13 namespace copresence {
15 class FakeDirectiveHandler final : public DirectiveHandler {
16 public:
17 FakeDirectiveHandler();
18 ~FakeDirectiveHandler() override;
20 const std::vector<std::string>& added_directives() const {
21 return added_directives_;
24 const std::vector<std::string>& removed_directives() const {
25 return removed_directives_;
28 // DirectiveHandler overrides.
29 void Start(WhispernetClient* /* whispernet_client */,
30 const TokensCallback& /* tokens_cb */) override {}
31 void AddDirective(const Directive& directive) override;
32 void RemoveDirectives(const std::string& op_id) override;
33 const std::string GetCurrentAudioToken(AudioType type) const override;
34 bool IsAudioTokenHeard(AudioType type) const override;
36 private:
37 std::vector<std::string> added_directives_;
38 std::vector<std::string> removed_directives_;
40 DISALLOW_COPY_AND_ASSIGN(FakeDirectiveHandler);
43 } // namespace copresence
45 #endif // COMPONENTS_COPRESENCE_TEST_FAKE_DIRECTIVE_HANDLER_H_