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

Side by Side Diff: content/ppapi_plugin/ppapi_blink_platform_impl.cc

Issue 2444873002: Move WebMIMERegistry impl from //content to blink:platform/network/mime (Closed)
Patch Set: remove indirection Created 4 years, 1 month 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
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 "content/ppapi_plugin/ppapi_blink_platform_impl.h" 5 #include "content/ppapi_plugin/ppapi_blink_platform_impl.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <map> 9 #include <map>
10 10
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 136
137 blink::WebThread* PpapiBlinkPlatformImpl::currentThread() { 137 blink::WebThread* PpapiBlinkPlatformImpl::currentThread() {
138 return BlinkPlatformImpl::currentThread(); 138 return BlinkPlatformImpl::currentThread();
139 } 139 }
140 140
141 blink::WebClipboard* PpapiBlinkPlatformImpl::clipboard() { 141 blink::WebClipboard* PpapiBlinkPlatformImpl::clipboard() {
142 NOTREACHED(); 142 NOTREACHED();
143 return NULL; 143 return NULL;
144 } 144 }
145 145
146 blink::WebMimeRegistry* PpapiBlinkPlatformImpl::mimeRegistry() {
147 NOTREACHED();
148 return NULL;
149 }
150
151 blink::WebFileUtilities* PpapiBlinkPlatformImpl::fileUtilities() { 146 blink::WebFileUtilities* PpapiBlinkPlatformImpl::fileUtilities() {
152 NOTREACHED(); 147 NOTREACHED();
153 return NULL; 148 return NULL;
154 } 149 }
155 150
156 blink::WebSandboxSupport* PpapiBlinkPlatformImpl::sandboxSupport() { 151 blink::WebSandboxSupport* PpapiBlinkPlatformImpl::sandboxSupport() {
157 #if !defined(OS_ANDROID) && !defined(OS_WIN) 152 #if !defined(OS_ANDROID) && !defined(OS_WIN)
158 return sandbox_support_.get(); 153 return sandbox_support_.get();
159 #else 154 #else
160 return nullptr; 155 return nullptr;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 } 237 }
243 238
244 int PpapiBlinkPlatformImpl::databaseDeleteFile( 239 int PpapiBlinkPlatformImpl::databaseDeleteFile(
245 const blink::WebString& vfs_file_name, 240 const blink::WebString& vfs_file_name,
246 bool sync_dir) { 241 bool sync_dir) {
247 NOTREACHED(); 242 NOTREACHED();
248 return 0; 243 return 0;
249 } 244 }
250 245
251 } // namespace content 246 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698