| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 COMPONENTS_ARC_TEST_FAKE_INTENT_HELPER_INSTANCE_H_ | 5 #ifndef COMPONENTS_ARC_TEST_FAKE_INTENT_HELPER_INSTANCE_H_ |
| 6 #define COMPONENTS_ARC_TEST_FAKE_INTENT_HELPER_INSTANCE_H_ | 6 #define COMPONENTS_ARC_TEST_FAKE_INTENT_HELPER_INSTANCE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 const mojo::String& extras) override; | 85 const mojo::String& extras) override; |
| 86 | 86 |
| 87 private: | 87 private: |
| 88 std::vector<Broadcast> broadcasts_; | 88 std::vector<Broadcast> broadcasts_; |
| 89 | 89 |
| 90 DISALLOW_COPY_AND_ASSIGN(FakeIntentHelperInstance); | 90 DISALLOW_COPY_AND_ASSIGN(FakeIntentHelperInstance); |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 } // namespace arc | 93 } // namespace arc |
| 94 | 94 |
| 95 #endif // COMPONENTS_ARC_TEST_FAKE_POLICY_INSTANCE_H_ | 95 #endif // COMPONENTS_ARC_TEST_FAKE_INTENT_HELPER_INSTANCE_H_ |
| OLD | NEW |