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

Side by Side Diff: chrome/browser/extensions/api/media_gallery/media_gallery_api.h

Issue 9812036: Revert 128089 - Initial extension bindings for Media Gallery API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/extensions/api/media_gallery/media_gallery_api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 // Defines the Chrome Extensions Cookies API functions for accessing internet
6 // cookies, as specified in the extension API JSON.
7
8 #ifndef CHROME_BROWSER_EXTENSIONS_API_MEDIA_GALLERY_MEDIA_GALLERY_API_H_
9 #define CHROME_BROWSER_EXTENSIONS_API_MEDIA_GALLERY_MEDIA_GALLERY_API_H_
10 #pragma once
11
12 #include "chrome/browser/extensions/extension_function.h"
13
14 namespace extensions {
15
16 class GetMediaGalleriesFunction : public SyncExtensionFunction {
17 public:
18 virtual ~GetMediaGalleriesFunction();
19 virtual bool RunImpl() OVERRIDE;
20 DECLARE_EXTENSION_FUNCTION_NAME(
21 "experimental.mediaGalleries.getMediaGalleries")
22 };
23
24 class OpenMediaGalleryManagerFunction : public SyncExtensionFunction {
25 public:
26 virtual ~OpenMediaGalleryManagerFunction();
27 virtual bool RunImpl() OVERRIDE;
28 DECLARE_EXTENSION_FUNCTION_NAME(
29 "experimental.mediaGalleries.openMediaGalleryManager")
30 };
31
32 class AssembleMediaFileFunction : public SyncExtensionFunction {
33 public:
34 virtual ~AssembleMediaFileFunction();
35 virtual bool RunImpl() OVERRIDE;
36 DECLARE_EXTENSION_FUNCTION_NAME(
37 "experimental.mediaGalleries.assembleMediaFile")
38 };
39
40 class ParseMediaFileMetadataFunction : public SyncExtensionFunction {
41 public:
42 virtual ~ParseMediaFileMetadataFunction();
43 virtual bool RunImpl() OVERRIDE;
44 DECLARE_EXTENSION_FUNCTION_NAME(
45 "experimental.mediaGalleries.parseMediaFileMetadata")
46 };
47
48 } // namespace extensions
49
50 #endif // CHROME_BROWSER_EXTENSIONS_API_MEDIA_GALLERY_MEDIA_GALLERY_API_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/api/media_gallery/media_gallery_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698