Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9230)

Unified Diff: chrome/browser/web_applications/web_app_linux.cc

Issue 300463002: Cleanup: Make namespace shell_integration_linux follow the style guide. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/views/frame/browser_frame.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/web_applications/web_app_linux.cc
diff --git a/chrome/browser/web_applications/web_app_linux.cc b/chrome/browser/web_applications/web_app_linux.cc
index 4cde8756f7292ada52d45ebee5c516dfeb116c70..0921b9b49e3602ab7db1ad4c2cbe68cdd0d57181 100644
--- a/chrome/browser/web_applications/web_app_linux.cc
+++ b/chrome/browser/web_applications/web_app_linux.cc
@@ -21,7 +21,7 @@ bool CreatePlatformShortcuts(
ShortcutCreationReason /*creation_reason*/) {
#if !defined(OS_CHROMEOS)
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::FILE));
- return ShellIntegrationLinux::CreateDesktopShortcut(
+ return shell_integration_linux::CreateDesktopShortcut(
shortcut_info, creation_locations);
#else
return false;
@@ -31,7 +31,7 @@ bool CreatePlatformShortcuts(
void DeletePlatformShortcuts(const base::FilePath& web_app_path,
const ShortcutInfo& shortcut_info) {
#if !defined(OS_CHROMEOS)
- ShellIntegrationLinux::DeleteDesktopShortcuts(shortcut_info.profile_path,
+ shell_integration_linux::DeleteDesktopShortcuts(shortcut_info.profile_path,
shortcut_info.extension_id);
#endif
}
@@ -47,7 +47,7 @@ void UpdatePlatformShortcuts(
// Find out whether shortcuts are already installed.
ShortcutLocations creation_locations =
- ShellIntegrationLinux::GetExistingShortcutLocations(
+ shell_integration_linux::GetExistingShortcutLocations(
env.get(), shortcut_info.profile_path, shortcut_info.extension_id);
// Always create a hidden shortcut in applications if a visible one is not
// being created. This allows the operating system to identify the app, but
@@ -63,7 +63,7 @@ void UpdatePlatformShortcuts(
void DeleteAllShortcutsForProfile(const base::FilePath& profile_path) {
#if !defined(OS_CHROMEOS)
- ShellIntegrationLinux::DeleteAllDesktopShortcuts(profile_path);
+ shell_integration_linux::DeleteAllDesktopShortcuts(profile_path);
#endif
}
« no previous file with comments | « chrome/browser/ui/views/frame/browser_frame.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698