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

Side by Side Diff: base/nix/mime_util_xdg.cc

Issue 8491043: Allow linker initialization of lazy instance (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: willchan comments + rebase Created 9 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
« no previous file with comments | « base/message_loop.cc ('k') | base/path_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "base/nix/mime_util_xdg.h" 5 #include "base/nix/mime_util_xdg.h"
6 6
7 #include <cstdlib> 7 #include <cstdlib>
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 #include <vector> 10 #include <vector>
(...skipping 17 matching lines...) Expand all
28 28
29 #include "base/message_loop.h" 29 #include "base/message_loop.h"
30 #endif 30 #endif
31 31
32 namespace { 32 namespace {
33 33
34 // None of the XDG stuff is thread-safe, so serialize all access under 34 // None of the XDG stuff is thread-safe, so serialize all access under
35 // this lock. 35 // this lock.
36 static base::LazyInstance<base::Lock, 36 static base::LazyInstance<base::Lock,
37 base::LeakyLazyInstanceTraits<base::Lock> > 37 base::LeakyLazyInstanceTraits<base::Lock> >
38 g_mime_util_xdg_lock(base::LINKER_INITIALIZED); 38 g_mime_util_xdg_lock = LAZY_INSTANCE_INITIALIZER;
39 39
40 class IconTheme; 40 class IconTheme;
41 41
42 class MimeUtilConstants { 42 class MimeUtilConstants {
43 public: 43 public:
44 typedef std::map<std::string, IconTheme*> IconThemeMap; 44 typedef std::map<std::string, IconTheme*> IconThemeMap;
45 typedef std::map<FilePath, base::Time> IconDirMtimeMap; 45 typedef std::map<FilePath, base::Time> IconDirMtimeMap;
46 typedef std::vector<std::string> IconFormats; 46 typedef std::vector<std::string> IconFormats;
47 47
48 // Specified by XDG icon theme specs. 48 // Specified by XDG icon theme specs.
(...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 icon_file = LookupIconInDefaultTheme(icon_names[i], size); 668 icon_file = LookupIconInDefaultTheme(icon_names[i], size);
669 if (!icon_file.empty()) 669 if (!icon_file.empty())
670 return icon_file; 670 return icon_file;
671 } 671 }
672 } 672 }
673 return FilePath(); 673 return FilePath();
674 } 674 }
675 675
676 } // namespace nix 676 } // namespace nix
677 } // namespace base 677 } // namespace base
OLDNEW
« no previous file with comments | « base/message_loop.cc ('k') | base/path_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698