OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 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. | |
4 | |
5 #include "extensions/browser/api/media_perception_private/media_perception_priva te_api.h" | |
6 | |
7 #include "extensions/browser/extension_function.h" | |
Devlin
2017/05/19 15:58:17
nit: This is included in the header; it's not need
Luke Sorenson
2017/05/19 16:30:38
Done.
| |
8 | |
9 namespace media_perception = extensions::api::media_perception_private; | |
10 | |
11 namespace extensions { | |
12 | |
13 MediaPerceptionPrivateGetStateFunction :: | |
14 MediaPerceptionPrivateGetStateFunction() {} | |
15 | |
16 MediaPerceptionPrivateGetStateFunction :: | |
17 ~MediaPerceptionPrivateGetStateFunction() {} | |
18 | |
19 ExtensionFunction::ResponseAction | |
20 MediaPerceptionPrivateGetStateFunction::Run() { | |
21 return RespondNow(Error("Not implemented.")); | |
22 } | |
23 | |
24 MediaPerceptionPrivateSetStateFunction :: | |
25 MediaPerceptionPrivateSetStateFunction() {} | |
26 | |
27 MediaPerceptionPrivateSetStateFunction :: | |
28 ~MediaPerceptionPrivateSetStateFunction() {} | |
29 | |
30 ExtensionFunction::ResponseAction | |
31 MediaPerceptionPrivateSetStateFunction::Run() { | |
32 return RespondNow(Error("Not implemented.")); | |
33 } | |
34 | |
35 MediaPerceptionPrivateGetDiagnosticsFunction :: | |
36 MediaPerceptionPrivateGetDiagnosticsFunction() {} | |
37 | |
38 MediaPerceptionPrivateGetDiagnosticsFunction :: | |
39 ~MediaPerceptionPrivateGetDiagnosticsFunction() {} | |
40 | |
41 ExtensionFunction::ResponseAction | |
42 MediaPerceptionPrivateGetDiagnosticsFunction::Run() { | |
43 return RespondNow(Error("Not implemented.")); | |
44 } | |
45 | |
46 } // namespace extensions | |
OLD | NEW |