OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #ifndef CONTENT_PUBLIC_TEST_ROUTIND_ID_MANGLING_DISABLER_H_ |
| 6 #define CONTENT_PUBLIC_TEST_ROUTIND_ID_MANGLING_DISABLER_H_ |
| 7 |
| 8 namespace content { |
| 9 |
| 10 // Some tests unfortunately assume that the routing ID starts from |
| 11 // one. This class temporarily satisfies such an assumption. |
| 12 class RoutingIDManglingDisabler { |
| 13 public: |
| 14 RoutingIDManglingDisabler(); |
| 15 ~RoutingIDManglingDisabler(); |
| 16 }; |
| 17 |
| 18 } // namespace content |
| 19 |
| 20 #endif // CONTENT_PUBLIC_TEST_ROUTIND_ID_MANGLING_DISABLER_H_ |
OLD | NEW |