Disable TabDragController tests that fail with a real compositor.
[chromium-blink-merge.git] / chrome / browser / extensions / api / braille_display_private / stub_braille_controller.cc
blob8e9f312aa587b351b070a6abfe419797cad9fbef
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::string& cells) {
21 void StubBrailleController::AddObserver(BrailleObserver* observer) {
24 void StubBrailleController::RemoveObserver(BrailleObserver* observer) {
27 } // namespace braille_display_private
28 } // namespace api
29 } // namespace extensions