Chromium Code Reviews| 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 } | 12 } |
| 13 | 13 |
| 14 void ChromeContentClient::SetGpuInfo(const GPUInfo& gpu_info) { | 14 void ChromeContentClient::SetGpuInfo(const GPUInfo& gpu_info) { |
| 15 child_process_logging::SetGpuInfo(gpu_info); | 15 child_process_logging::SetGpuInfo(gpu_info); |
| 16 } | 16 } |
| 17 | 17 |
| 18 void ChromeContentClient::PluginProcessStarted() { | |
| 19 } | |
|
Charlie Reis
2011/03/15 20:15:00
Any reason to add this now, if we're not doing any
jam
2011/03/15 20:25:24
I just had it in the same checkout, so I figured i
| |
| 20 | |
| 18 } // namespace chrome | 21 } // namespace chrome |
| OLD | NEW |