| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_COMMON_EXTENSIONS_API_AUTOMATION_API_CONSTANTS_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_API_AUTOMATION_API_CONSTANTS_H_ |
| 7 |
| 8 namespace extensions { |
| 9 namespace api { |
| 10 namespace automation { |
| 11 |
| 12 // The accessibility tree ID of the desktop tree. All other tree IDs are |
| 13 // for web content. |
| 14 const int kDesktopTreeID = 0; |
| 15 |
| 16 } // namespace automation |
| 17 } // namespace api |
| 18 } // namespace extensions |
| 19 |
| 20 #endif // CHROME_COMMON_EXTENSIONS_API_AUTOMATION_API_CONSTANTS_H_ |
| OLD | NEW |