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

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

Issue 16328003: Move a bunch of child-only code from content/common to content/child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 6 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
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_webkitplatformsupport_impl.h" 5 #include "content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h"
6 6
7 #include <map> 7 #include <map>
8 8
9 #include "base/synchronization/lock.h"
10 #include "base/logging.h" 9 #include "base/logging.h"
11 #include "base/string16.h" 10 #include "base/string16.h"
11 #include "base/synchronization/lock.h"
12 #include "build/build_config.h" 12 #include "build/build_config.h"
13 #include "content/child/child_thread.h"
13 #include "content/common/child_process_messages.h" 14 #include "content/common/child_process_messages.h"
14 #include "content/common/child_thread.h"
15 #include "ppapi/proxy/plugin_globals.h" 15 #include "ppapi/proxy/plugin_globals.h"
16 #include "third_party/WebKit/public/platform/WebString.h" 16 #include "third_party/WebKit/public/platform/WebString.h"
17 17
18 #if defined(OS_WIN) 18 #if defined(OS_WIN)
19 #include "third_party/WebKit/public/platform/win/WebSandboxSupport.h" 19 #include "third_party/WebKit/public/platform/win/WebSandboxSupport.h"
20 #elif defined(OS_MACOSX) 20 #elif defined(OS_MACOSX)
21 #include "third_party/WebKit/public/platform/mac/WebSandboxSupport.h" 21 #include "third_party/WebKit/public/platform/mac/WebSandboxSupport.h"
22 #elif defined(OS_POSIX) 22 #elif defined(OS_POSIX)
23 #if !defined(OS_ANDROID) 23 #if !defined(OS_ANDROID)
24 #include "content/common/child_process_sandbox_support_impl_linux.h" 24 #include "content/common/child_process_sandbox_support_impl_linux.h"
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 NOTREACHED(); 256 NOTREACHED();
257 } 257 }
258 258
259 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile( 259 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile(
260 const WebKit::WebString& vfs_file_name, bool sync_dir) { 260 const WebKit::WebString& vfs_file_name, bool sync_dir) {
261 NOTREACHED(); 261 NOTREACHED();
262 return 0; 262 return 0;
263 } 263 }
264 264
265 } // namespace content 265 } // namespace content
OLDNEW
« no previous file with comments | « content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h ('k') | content/renderer/java/java_bridge_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698