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

Side by Side Diff: chrome/browser/shell_integration_linux.cc

Issue 11366229: Move eintr_wrapper.h from base to base/posix (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/browser/shell_integration_linux.h" 5 #include "chrome/browser/shell_integration_linux.h"
6 6
7 #include <fcntl.h> 7 #include <fcntl.h>
8 #include <glib.h> 8 #include <glib.h>
9 #include <stdlib.h> 9 #include <stdlib.h>
10 #include <sys/stat.h> 10 #include <sys/stat.h>
11 #include <sys/types.h> 11 #include <sys/types.h>
12 #include <unistd.h> 12 #include <unistd.h>
13 13
14 #include <string> 14 #include <string>
15 #include <vector> 15 #include <vector>
16 16
17 #include "base/base_paths.h" 17 #include "base/base_paths.h"
18 #include "base/command_line.h" 18 #include "base/command_line.h"
19 #include "base/eintr_wrapper.h"
20 #include "base/environment.h" 19 #include "base/environment.h"
21 #include "base/file_path.h" 20 #include "base/file_path.h"
22 #include "base/file_util.h" 21 #include "base/file_util.h"
23 #include "base/i18n/file_util_icu.h" 22 #include "base/i18n/file_util_icu.h"
24 #include "base/message_loop.h" 23 #include "base/message_loop.h"
25 #include "base/path_service.h" 24 #include "base/path_service.h"
25 #include "base/posix/eintr_wrapper.h"
26 #include "base/process_util.h" 26 #include "base/process_util.h"
27 #include "base/scoped_temp_dir.h" 27 #include "base/scoped_temp_dir.h"
28 #include "base/string_number_conversions.h" 28 #include "base/string_number_conversions.h"
29 #include "base/string_tokenizer.h" 29 #include "base/string_tokenizer.h"
30 #include "base/threading/thread.h" 30 #include "base/threading/thread.h"
31 #include "base/utf_string_conversions.h" 31 #include "base/utf_string_conversions.h"
32 #include "build/build_config.h" 32 #include "build/build_config.h"
33 #include "chrome/browser/web_applications/web_app.h" 33 #include "chrome/browser/web_applications/web_app.h"
34 #include "chrome/common/chrome_constants.h" 34 #include "chrome/common/chrome_constants.h"
35 #include "content/public/browser/browser_thread.h" 35 #include "content/public/browser/browser_thread.h"
(...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 679
680 FilePath shortcut_filename = GetExtensionShortcutFilename( 680 FilePath shortcut_filename = GetExtensionShortcutFilename(
681 profile_path, extension_id); 681 profile_path, extension_id);
682 DCHECK(!shortcut_filename.empty()); 682 DCHECK(!shortcut_filename.empty());
683 683
684 DeleteShortcutOnDesktop(shortcut_filename); 684 DeleteShortcutOnDesktop(shortcut_filename);
685 DeleteShortcutInApplicationsMenu(shortcut_filename); 685 DeleteShortcutInApplicationsMenu(shortcut_filename);
686 } 686 }
687 687
688 } // namespace ShellIntegrationLinux 688 } // namespace ShellIntegrationLinux
OLDNEW
« no previous file with comments | « chrome/browser/process_singleton_mac_unittest.cc ('k') | chrome/common/multi_process_lock_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698