| 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 "chrome/common/chrome_content_client.h" | 5 #include "chrome/common/chrome_content_client.h" |
| 6 | 6 |
| 7 #include "chrome/common/child_process_logging.h" | 7 #include "chrome/common/child_process_logging.h" |
| 8 | 8 |
| 9 namespace chrome { | 9 namespace chrome { |
| 10 | 10 |
| 11 void ChromeContentClient::SetActiveURL(const GURL& url) { | 11 void ChromeContentClient::SetActiveURL(const GURL& url) { |
| 12 child_process_logging::SetActiveURL(url); |
| 12 } | 13 } |
| 13 | 14 |
| 14 void ChromeContentClient::SetGpuInfo(const GPUInfo& gpu_info) { | 15 void ChromeContentClient::SetGpuInfo(const GPUInfo& gpu_info) { |
| 15 child_process_logging::SetGpuInfo(gpu_info); | 16 child_process_logging::SetGpuInfo(gpu_info); |
| 16 } | 17 } |
| 17 | 18 |
| 18 } // namespace chrome | 19 } // namespace chrome |
| OLD | NEW |