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

Side by Side Diff: chrome/renderer/extensions/media_galleries_custom_bindings.cc

Issue 553983013: Remove storage-related redirect headers in webkit/common/, update #includes and DEPS files to use s… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 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
« no previous file with comments | « chrome/renderer/DEPS ('k') | chrome/renderer/extensions/sync_file_system_custom_bindings.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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/renderer/extensions/media_galleries_custom_bindings.h" 5 #include "chrome/renderer/extensions/media_galleries_custom_bindings.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "extensions/renderer/script_context.h" 9 #include "extensions/renderer/script_context.h"
10 #include "storage/common/fileapi/file_system_util.h"
10 #include "third_party/WebKit/public/web/WebDOMFileSystem.h" 11 #include "third_party/WebKit/public/web/WebDOMFileSystem.h"
11 #include "third_party/WebKit/public/web/WebDocument.h" 12 #include "third_party/WebKit/public/web/WebDocument.h"
12 #include "third_party/WebKit/public/web/WebLocalFrame.h" 13 #include "third_party/WebKit/public/web/WebLocalFrame.h"
13 #include "v8/include/v8.h" 14 #include "v8/include/v8.h"
14 #include "webkit/common/fileapi/file_system_util.h"
15 15
16 namespace extensions { 16 namespace extensions {
17 17
18 namespace { 18 namespace {
19 19
20 // FileSystemObject GetMediaFileSystem(string file_system_url): construct 20 // FileSystemObject GetMediaFileSystem(string file_system_url): construct
21 // a file system object from a file system url. 21 // a file system object from a file system url.
22 void GetMediaFileSystemObject(const v8::FunctionCallbackInfo<v8::Value>& args) { 22 void GetMediaFileSystemObject(const v8::FunctionCallbackInfo<v8::Value>& args) {
23 CHECK_EQ(1, args.Length()); 23 CHECK_EQ(1, args.Length());
24 CHECK(args[0]->IsString()); 24 CHECK(args[0]->IsString());
(...skipping 21 matching lines...) Expand all
46 } // namespace 46 } // namespace
47 47
48 MediaGalleriesCustomBindings::MediaGalleriesCustomBindings( 48 MediaGalleriesCustomBindings::MediaGalleriesCustomBindings(
49 ScriptContext* context) 49 ScriptContext* context)
50 : ObjectBackedNativeHandler(context) { 50 : ObjectBackedNativeHandler(context) {
51 RouteFunction("GetMediaFileSystemObject", 51 RouteFunction("GetMediaFileSystemObject",
52 base::Bind(&GetMediaFileSystemObject)); 52 base::Bind(&GetMediaFileSystemObject));
53 } 53 }
54 54
55 } // namespace extensions 55 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/renderer/DEPS ('k') | chrome/renderer/extensions/sync_file_system_custom_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698