| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_EXTENSIONS_API_BRAILLE_DISPLAY_PRIVATE_BRAILLE_CONTROLLER
_BRLAPI_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_BRAILLE_DISPLAY_PRIVATE_BRAILLE_CONTROLLER
_BRLAPI_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_BRAILLE_DISPLAY_PRIVATE_BRAILLE_CONTROLLER
_BRLAPI_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_BRAILLE_DISPLAY_PRIVATE_BRAILLE_CONTROLLER
_BRLAPI_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/files/file_path_watcher.h" | 9 #include "base/files/file_path_watcher.h" |
| 10 #include "base/gtest_prod_util.h" | |
| 11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
| 13 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 14 #include "chrome/browser/extensions/api/braille_display_private/braille_controll
er.h" | 13 #include "chrome/browser/extensions/api/braille_display_private/braille_controll
er.h" |
| 15 #include "chrome/browser/extensions/api/braille_display_private/brlapi_connectio
n.h" | 14 #include "chrome/browser/extensions/api/braille_display_private/brlapi_connectio
n.h" |
| 16 #include "library_loaders/libbrlapi.h" | 15 #include "library_loaders/libbrlapi.h" |
| 17 | 16 |
| 18 namespace extensions { | 17 namespace extensions { |
| 19 namespace api { | 18 namespace api { |
| 20 namespace braille_display_private { | 19 namespace braille_display_private { |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 friend struct base::DefaultSingletonTraits<BrailleControllerImpl>; | 81 friend struct base::DefaultSingletonTraits<BrailleControllerImpl>; |
| 83 | 82 |
| 84 DISALLOW_COPY_AND_ASSIGN(BrailleControllerImpl); | 83 DISALLOW_COPY_AND_ASSIGN(BrailleControllerImpl); |
| 85 }; | 84 }; |
| 86 | 85 |
| 87 } // namespace braille_display_private | 86 } // namespace braille_display_private |
| 88 } // namespace api | 87 } // namespace api |
| 89 } // namespace extensions | 88 } // namespace extensions |
| 90 | 89 |
| 91 #endif // CHROME_BROWSER_EXTENSIONS_API_BRAILLE_DISPLAY_PRIVATE_BRAILLE_CONTROL
LER_BRLAPI_H_ | 90 #endif // CHROME_BROWSER_EXTENSIONS_API_BRAILLE_DISPLAY_PRIVATE_BRAILLE_CONTROL
LER_BRLAPI_H_ |
| OLD | NEW |