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

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

Issue 74543002: Rename icon_loader_aurax11 as icon_loader_auralinux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
« no previous file with comments | « no previous file | chrome/browser/icon_loader_aurax11.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/icon_loader.h" 5 #include "chrome/browser/icon_loader.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "base/nix/mime_util_xdg.h" 9 #include "base/nix/mime_util_xdg.h"
10 #include "ui/views/linux_ui/linux_ui.h" 10 #include "ui/views/linux_ui/linux_ui.h"
(...skipping 27 matching lines...) Expand all
38 views::LinuxUI* ui = views::LinuxUI::instance(); 38 views::LinuxUI* ui = views::LinuxUI::instance();
39 if (ui) { 39 if (ui) {
40 gfx::Image image = ui->GetIconForContentType(group_, size_pixels); 40 gfx::Image image = ui->GetIconForContentType(group_, size_pixels);
41 if (!image.IsEmpty()) 41 if (!image.IsEmpty())
42 image_.reset(new gfx::Image(image)); 42 image_.reset(new gfx::Image(image));
43 } 43 }
44 44
45 target_message_loop_->PostTask( 45 target_message_loop_->PostTask(
46 FROM_HERE, base::Bind(&IconLoader::NotifyDelegate, this)); 46 FROM_HERE, base::Bind(&IconLoader::NotifyDelegate, this));
47 } 47 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/icon_loader_aurax11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698