| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "chrome/common/chrome_content_client.h" | 5 #include "chrome/common/chrome_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 "chrome/common/chrome_version_info.h" | 9 #include "chrome/common/chrome_version_info.h" |
| 10 #include "chrome/common/url_constants.h" | 10 #include "chrome/common/url_constants.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 std::vector<content::PepperPluginInfo>* plugins) { | 28 std::vector<content::PepperPluginInfo>* plugins) { |
| 29 NOTREACHED(); | 29 NOTREACHED(); |
| 30 } | 30 } |
| 31 | 31 |
| 32 void ChromeContentClient::AddAdditionalSchemes( | 32 void ChromeContentClient::AddAdditionalSchemes( |
| 33 std::vector<std::string>* standard_schemes, | 33 std::vector<std::string>* standard_schemes, |
| 34 std::vector<std::string>* saveable_shemes) { | 34 std::vector<std::string>* saveable_shemes) { |
| 35 // No additional schemes for iOS. | 35 // No additional schemes for iOS. |
| 36 } | 36 } |
| 37 | 37 |
| 38 bool ChromeContentClient::CanHandleWhileSwappedOut( | |
| 39 const IPC::Message& msg) { | |
| 40 NOTIMPLEMENTED(); | |
| 41 return false; | |
| 42 } | |
| 43 | |
| 44 std::string ChromeContentClient::GetProduct() const { | 38 std::string ChromeContentClient::GetProduct() const { |
| 45 chrome::VersionInfo version_info; | 39 chrome::VersionInfo version_info; |
| 46 std::string product("CriOS/"); | 40 std::string product("CriOS/"); |
| 47 product += version_info.is_valid() ? version_info.Version() : "0.0.0.0"; | 41 product += version_info.is_valid() ? version_info.Version() : "0.0.0.0"; |
| 48 return product; | 42 return product; |
| 49 } | 43 } |
| 50 | 44 |
| 51 std::string ChromeContentClient::GetUserAgent() const { | 45 std::string ChromeContentClient::GetUserAgent() const { |
| 52 std::string product = GetProduct(); | 46 std::string product = GetProduct(); |
| 53 return content::BuildUserAgentFromProduct(product); | 47 return content::BuildUserAgentFromProduct(product); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 70 } | 64 } |
| 71 | 65 |
| 72 gfx::Image& ChromeContentClient::GetNativeImageNamed(int resource_id) const { | 66 gfx::Image& ChromeContentClient::GetNativeImageNamed(int resource_id) const { |
| 73 return ResourceBundle::GetSharedInstance().GetNativeImageNamed(resource_id); | 67 return ResourceBundle::GetSharedInstance().GetNativeImageNamed(resource_id); |
| 74 } | 68 } |
| 75 | 69 |
| 76 std::string ChromeContentClient::GetProcessTypeNameInEnglish(int type) { | 70 std::string ChromeContentClient::GetProcessTypeNameInEnglish(int type) { |
| 77 DCHECK(false) << "Unknown child process type!"; | 71 DCHECK(false) << "Unknown child process type!"; |
| 78 return "Unknown"; | 72 return "Unknown"; |
| 79 } | 73 } |
| OLD | NEW |