Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(521)

Side by Side Diff: extensions/browser/api/media_perception_private/media_perception_private_api.cc

Issue 2860203002: MediaPerceptionPrivate IDL and skeleton. (Closed)
Patch Set: Added permission set unittest fix. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 namespace extensions {
8
9 MediaPerceptionPrivateGetStateFunction ::
10 MediaPerceptionPrivateGetStateFunction() {}
11
12 MediaPerceptionPrivateGetStateFunction ::
13 ~MediaPerceptionPrivateGetStateFunction() {}
14
15 ExtensionFunction::ResponseAction
16 MediaPerceptionPrivateGetStateFunction::Run() {
17 return RespondNow(Error("Not implemented."));
18 }
19
20 MediaPerceptionPrivateSetStateFunction ::
21 MediaPerceptionPrivateSetStateFunction() {}
22
23 MediaPerceptionPrivateSetStateFunction ::
24 ~MediaPerceptionPrivateSetStateFunction() {}
25
26 ExtensionFunction::ResponseAction
27 MediaPerceptionPrivateSetStateFunction::Run() {
28 return RespondNow(Error("Not implemented."));
29 }
30
31 MediaPerceptionPrivateGetDiagnosticsFunction ::
32 MediaPerceptionPrivateGetDiagnosticsFunction() {}
33
34 MediaPerceptionPrivateGetDiagnosticsFunction ::
35 ~MediaPerceptionPrivateGetDiagnosticsFunction() {}
36
37 ExtensionFunction::ResponseAction
38 MediaPerceptionPrivateGetDiagnosticsFunction::Run() {
39 return RespondNow(Error("Not implemented."));
40 }
41
42 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698