Index: chrome/browser/ui/gtk/unity_service.cc |
diff --git a/chrome/browser/ui/gtk/unity_service.cc b/chrome/browser/ui/gtk/unity_service.cc |
index 7adc936e3f02d30e56084cc7ff87eb46c771a426..c4e343f6f3fc8dd1feb1328dd8d4493ebdcb290f 100644 |
--- a/chrome/browser/ui/gtk/unity_service.cc |
+++ b/chrome/browser/ui/gtk/unity_service.cc |
@@ -9,7 +9,7 @@ |
#include "base/environment.h" |
#include "base/memory/scoped_ptr.h" |
-#include "chrome/browser/shell_integration.h" |
+#include "chrome/browser/shell_integration_linux.h" |
// Unity data typedefs. |
typedef struct _UnityInspector UnityInspector; |
@@ -77,7 +77,7 @@ void EnsureMethodsLoaded() { |
dlsym(unity_lib, "unity_launcher_entry_get_for_desktop_id")); |
if (entry_get_for_desktop_id) { |
scoped_ptr<base::Environment> env(base::Environment::Create()); |
- std::string desktop_id = ShellIntegration::GetDesktopName(env.get()); |
+ std::string desktop_id = ShellIntegrationLinux::GetDesktopName(env.get()); |
chrome_entry = entry_get_for_desktop_id(desktop_id.c_str()); |
entry_set_count = |