| Index: chrome/renderer/extensions/media_gallery_custom_bindings.h
|
| diff --git a/chrome/renderer/extensions/media_gallery_custom_bindings.h b/chrome/renderer/extensions/media_gallery_custom_bindings.h
|
| deleted file mode 100644
|
| index 14b3bec74f3ba042ff6893b3d68d374acea040a5..0000000000000000000000000000000000000000
|
| --- a/chrome/renderer/extensions/media_gallery_custom_bindings.h
|
| +++ /dev/null
|
| @@ -1,33 +0,0 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef CHROME_RENDERER_EXTENSIONS_MEDIA_GALLERY_CUSTOM_BINDINGS_H_
|
| -#define CHROME_RENDERER_EXTENSIONS_MEDIA_GALLERY_CUSTOM_BINDINGS_H_
|
| -
|
| -#include "chrome/renderer/extensions/chrome_v8_extension.h"
|
| -
|
| -namespace extensions {
|
| -
|
| -// Implements custom bindings for the media gallery API.
|
| -class MediaGalleryCustomBindings : public ChromeV8Extension {
|
| - public:
|
| - MediaGalleryCustomBindings();
|
| -
|
| - private:
|
| - // FileSystemObject GetMediaFileSystem(string file_system_url): construct
|
| - // a file system object from a file system url.
|
| - v8::Handle<v8::Value> GetMediaFileSystemObject(const v8::Arguments& args);
|
| -
|
| - // DirectoryReader GetMediaFileSystem(FileEntry): synchronously return a
|
| - // directory reader for a virtual directory. The directory will contain
|
| - // all of the thumbnails embedded in the passed file.
|
| - v8::Handle<v8::Value> ExtractEmbeddedThumbnails(const v8::Arguments& args);
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(MediaGalleryCustomBindings);
|
| -};
|
| -
|
| -} // extensions
|
| -
|
| -#endif // CHROME_RENDERER_EXTENSIONS_MEDIA_GALLERY_CUSTOM_BINDINGS_H_
|
| -
|
|
|