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

Side by Side Diff: content/common/content_client.cc

Issue 7084010: Move sandbox_policy to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/common/content_client.h" 5 #include "content/common/content_client.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 static ContentClient* g_client; 9 static ContentClient* g_client;
10 10
(...skipping 13 matching lines...) Expand all
24 } 24 }
25 25
26 bool ContentClient::CanSendWhileSwappedOut(const IPC::Message* msg) { 26 bool ContentClient::CanSendWhileSwappedOut(const IPC::Message* msg) {
27 return false; 27 return false;
28 } 28 }
29 29
30 bool ContentClient::CanHandleWhileSwappedOut(const IPC::Message& msg) { 30 bool ContentClient::CanHandleWhileSwappedOut(const IPC::Message& msg) {
31 return false; 31 return false;
32 } 32 }
33 33
34 #if defined(OS_WIN)
35 bool ContentClient::SandboxPlugin(CommandLine* command_line,
36 sandbox::TargetPolicy* policy) {
37 return false;
38 }
39 #endif
40
34 } // namespace content 41 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698