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
3 // found in the LICENSE file.
5 #include "chrome/browser/extensions/api/braille_display_private/stub_braille_controller.h"
9 namespace braille_display_private
{
11 StubBrailleController::StubBrailleController() {
14 scoped_ptr
<DisplayState
> StubBrailleController::GetDisplayState() {
15 return scoped_ptr
<DisplayState
>(new DisplayState
);
18 void StubBrailleController::WriteDots(const std::vector
<char>& cells
) {
21 void StubBrailleController::AddObserver(BrailleObserver
* observer
) {
24 void StubBrailleController::RemoveObserver(BrailleObserver
* observer
) {
27 } // namespace braille_display_private
29 } // namespace extensions