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 #include "chrome/common/default_plugin.h" | |
9 | |
10 #if defined(OS_MACOSX) | |
11 #include "base/mac/mac_util.h" | |
12 #include "base/mac/scoped_cftyperef.h" | |
13 #include "base/sys_string_conversions.h" | |
14 #include "grit/chromium_strings.h" | |
15 #include "ui/base/l10n/l10n_util.h" | |
16 #endif | |
17 | 8 |
18 namespace chrome { | 9 namespace chrome { |
19 | 10 |
20 void ChromeContentClient::SetActiveURL(const GURL& url) { | 11 void ChromeContentClient::SetActiveURL(const GURL& url) { |
21 child_process_logging::SetActiveURL(url); | 12 child_process_logging::SetActiveURL(url); |
22 } | 13 } |
23 | 14 |
24 void ChromeContentClient::SetGpuInfo(const GPUInfo& gpu_info) { | |
25 child_process_logging::SetGpuInfo(gpu_info); | |
26 } | |
27 | |
28 void ChromeContentClient::PluginProcessStarted(const string16& plugin_name) { | |
29 #if defined(OS_MACOSX) | |
30 base::mac::ScopedCFTypeRef<CFStringRef> cf_plugin_name( | |
31 base::SysUTF16ToCFStringRef(plugin_name)); | |
32 base::mac::ScopedCFTypeRef<CFStringRef> app_name( | |
33 base::SysUTF16ToCFStringRef( | |
34 l10n_util::GetStringUTF16(IDS_SHORT_PLUGIN_APP_NAME))); | |
35 base::mac::ScopedCFTypeRef<CFStringRef> process_name( | |
36 CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%@ (%@)"), | |
37 cf_plugin_name.get(), app_name.get())); | |
38 base::mac::SetProcessName(process_name); | |
39 #endif | |
40 | |
41 #if !defined(NACL_WIN64) // We don't link this in the NaCl 64 bit binary. | |
42 chrome::RegisterInternalDefaultPlugin(); | |
43 #endif | |
44 } | |
45 | |
46 } // namespace chrome | 15 } // namespace chrome |
OLD | NEW |