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

Unified Diff: content/common/content_client.cc

Issue 7274031: Wholesale move of debugger sources to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add OWNERS and DEPS. Created 9 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 side-by-side diff with in-line comments
Download patch
Index: content/common/content_client.cc
diff --git a/content/common/content_client.cc b/content/common/content_client.cc
index d903a58cd7da7851ee4c71ec2451770066ed99ba..cc2bad4677f6416418ddd65467ac01a78300d783 100644
--- a/content/common/content_client.cc
+++ b/content/common/content_client.cc
@@ -25,32 +25,4 @@ ContentClient::ContentClient()
ContentClient::~ContentClient() {
}
-bool ContentClient::CanSendWhileSwappedOut(const IPC::Message* msg) {
- return false;
-}
-
-bool ContentClient::CanHandleWhileSwappedOut(const IPC::Message& msg) {
- return false;
-}
-
-std::string ContentClient::GetUserAgent(bool mimic_windows) const {
- return std::string();
-}
-
-string16 ContentClient::GetLocalizedString(int message_id) const {
- return string16();
-}
-
-// Return the contents of a resource in a StringPiece given the resource id.
-base::StringPiece ContentClient::GetDataResource(int resource_id) const {
- return base::StringPiece();
-}
-
-#if defined(OS_WIN)
-bool ContentClient::SandboxPlugin(CommandLine* command_line,
- sandbox::TargetPolicy* policy) {
- return false;
-}
-#endif
-
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698