OLD | NEW |
---|---|
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/shell/shell_content_client.h" | 5 #include "content/shell/shell_content_client.h" |
6 | 6 |
7 #include "base/string_piece.h" | 7 #include "base/string_piece.h" |
8 | 8 |
9 namespace content { | 9 namespace content { |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... | |
22 } | 22 } |
23 | 23 |
24 bool ShellContentClient::CanSendWhileSwappedOut(const IPC::Message* msg) { | 24 bool ShellContentClient::CanSendWhileSwappedOut(const IPC::Message* msg) { |
25 return false; | 25 return false; |
26 } | 26 } |
27 | 27 |
28 bool ShellContentClient::CanHandleWhileSwappedOut(const IPC::Message& msg) { | 28 bool ShellContentClient::CanHandleWhileSwappedOut(const IPC::Message& msg) { |
29 return false; | 29 return false; |
30 } | 30 } |
31 | 31 |
32 std::string ShellContentClient::GetUserAgent(bool mimic_windows) const { | 32 std::string ShellContentClient::GetUserAgent(bool *overriding) const { |
Evan Martin
2011/09/21 20:27:24
star on the left
Dirk Pranke
2011/09/21 21:02:35
Will fix.
| |
33 return std::string(); | 33 *overriding = false; |
34 return std::string("ContentShell"); | |
34 } | 35 } |
35 | 36 |
36 string16 ShellContentClient::GetLocalizedString(int message_id) const { | 37 string16 ShellContentClient::GetLocalizedString(int message_id) const { |
37 return string16(); | 38 return string16(); |
38 } | 39 } |
39 | 40 |
40 base::StringPiece ShellContentClient::GetDataResource(int resource_id) const { | 41 base::StringPiece ShellContentClient::GetDataResource(int resource_id) const { |
41 return base::StringPiece(); | 42 return base::StringPiece(); |
42 } | 43 } |
43 | 44 |
44 #if defined(OS_WIN) | 45 #if defined(OS_WIN) |
45 bool ShellContentClient::SandboxPlugin(CommandLine* command_line, | 46 bool ShellContentClient::SandboxPlugin(CommandLine* command_line, |
46 sandbox::TargetPolicy* policy) { | 47 sandbox::TargetPolicy* policy) { |
47 return false; | 48 return false; |
48 } | 49 } |
49 #endif | 50 #endif |
50 | 51 |
51 } // namespace content | 52 } // namespace content |
OLD | NEW |