| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 int sandbox_type, | 110 int sandbox_type, |
| 111 int* sandbox_profile_resource_id) const { | 111 int* sandbox_profile_resource_id) const { |
| 112 return false; | 112 return false; |
| 113 } | 113 } |
| 114 #endif | 114 #endif |
| 115 | 115 |
| 116 bool ContentClient::IsSupplementarySiteIsolationModeEnabled() { | 116 bool ContentClient::IsSupplementarySiteIsolationModeEnabled() { |
| 117 return false; | 117 return false; |
| 118 } | 118 } |
| 119 | 119 |
| 120 base::StringPiece ContentClient::GetOriginTrialPublicKey() { |
| 121 return base::StringPiece(); |
| 122 } |
| 123 |
| 120 } // namespace content | 124 } // namespace content |
| OLD | NEW |