Chromium Code Reviews| 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 #include "chrome/browser/extensions/api/braille_display_private/stub_braille_con troller.h" | |
|
Devlin
2016/04/07 21:32:28
What's going on with these includes? I think brai
dcheng
2016/04/07 21:42:22
Oops, I manually undid this and mixed it up. I'll
| |
| 6 | |
| 7 #include <memory> | |
| 8 | |
| 9 #include "base/memory/singleton.h" | |
| 5 #include "chrome/browser/extensions/api/braille_display_private/braille_controll er.h" | 10 #include "chrome/browser/extensions/api/braille_display_private/braille_controll er.h" |
| 6 | |
| 7 #include "base/memory/scoped_ptr.h" | |
| 8 #include "base/memory/singleton.h" | |
| 9 #include "chrome/browser/extensions/api/braille_display_private/stub_braille_con troller.h" | |
| 10 #include "chrome/common/extensions/api/braille_display_private.h" | 11 #include "chrome/common/extensions/api/braille_display_private.h" |
| 11 | 12 |
| 12 namespace extensions { | 13 namespace extensions { |
| 13 namespace api { | 14 namespace api { |
| 14 namespace braille_display_private { | 15 namespace braille_display_private { |
| 15 | 16 |
| 16 BrailleController::BrailleController() { | 17 BrailleController::BrailleController() { |
| 17 } | 18 } |
| 18 | 19 |
| 19 BrailleController::~BrailleController() { | 20 BrailleController::~BrailleController() { |
| 20 } | 21 } |
| 21 | 22 |
| 22 // static | 23 // static |
| 23 BrailleController* BrailleController::GetInstance() { | 24 BrailleController* BrailleController::GetInstance() { |
| 24 return StubBrailleController::GetInstance(); | 25 return StubBrailleController::GetInstance(); |
| 25 } | 26 } |
| 26 | 27 |
| 27 } // namespace braille_display_private | 28 } // namespace braille_display_private |
| 28 } // namespace api | 29 } // namespace api |
| 29 } // namespace extensions | 30 } // namespace extensions |
| OLD | NEW |