Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / browser / extensions / api / braille_display_private / stub_braille_controller.cc
blobd1e0da830a1ad170d4bc3a0c4eb7ce5449091ac0
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"
7 namespace extensions {
8 namespace api {
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
28 } // namespace api
29 } // namespace extensions