| OLD | NEW |
| 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/public/common/content_client.h" | 5 #include "content/public/common/content_client.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/strings/string_piece.h" | 8 #include "base/strings/string_piece.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "content/public/common/origin_util.h" | 10 #include "content/public/common/origin_util.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 } | 71 } |
| 72 | 72 |
| 73 bool ContentClient::CanSendWhileSwappedOut(const IPC::Message* message) { | 73 bool ContentClient::CanSendWhileSwappedOut(const IPC::Message* message) { |
| 74 return false; | 74 return false; |
| 75 } | 75 } |
| 76 | 76 |
| 77 std::string ContentClient::GetProduct() const { | 77 std::string ContentClient::GetProduct() const { |
| 78 return std::string(); | 78 return std::string(); |
| 79 } | 79 } |
| 80 | 80 |
| 81 std::string ContentClient::GetLastChange() const { |
| 82 return std::string(); |
| 83 } |
| 84 |
| 81 std::string ContentClient::GetUserAgent() const { | 85 std::string ContentClient::GetUserAgent() const { |
| 82 return std::string(); | 86 return std::string(); |
| 83 } | 87 } |
| 84 | 88 |
| 85 base::string16 ContentClient::GetLocalizedString(int message_id) const { | 89 base::string16 ContentClient::GetLocalizedString(int message_id) const { |
| 86 return base::string16(); | 90 return base::string16(); |
| 87 } | 91 } |
| 88 | 92 |
| 89 base::StringPiece ContentClient::GetDataResource( | 93 base::StringPiece ContentClient::GetDataResource( |
| 90 int resource_id, | 94 int resource_id, |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 bool ContentClient::UsingSynchronousCompositing() { | 136 bool ContentClient::UsingSynchronousCompositing() { |
| 133 return false; | 137 return false; |
| 134 } | 138 } |
| 135 | 139 |
| 136 media::MediaClientAndroid* ContentClient::GetMediaClientAndroid() { | 140 media::MediaClientAndroid* ContentClient::GetMediaClientAndroid() { |
| 137 return nullptr; | 141 return nullptr; |
| 138 } | 142 } |
| 139 #endif // OS_ANDROID | 143 #endif // OS_ANDROID |
| 140 | 144 |
| 141 } // namespace content | 145 } // namespace content |
| OLD | NEW |