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

Side by Side Diff: chrome/browser/media/window_icon_util_x11.cc

Issue 2270543003: Display Window Icon In Picker UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use unique_ptr for Error Tracker Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/media/window_icon_util.h" 5 #include "chrome/browser/media/window_icon_util.h"
6 6
7 #include <X11/Xatom.h> 7 #include <X11/Xatom.h>
8 #include <X11/Xutil.h> 8 #include <X11/Xutil.h>
9 9
10 #include "ui/gfx/x/x11_error_tracker.h"
10 #include "ui/gfx/x/x11_types.h" 11 #include "ui/gfx/x/x11_types.h"
11 12
12 gfx::ImageSkia GetWindowIcon(content::DesktopMediaID id) { 13 gfx::ImageSkia GetWindowIcon(content::DesktopMediaID id) {
13 DCHECK(id.type == content::DesktopMediaID::TYPE_WINDOW); 14 DCHECK(id.type == content::DesktopMediaID::TYPE_WINDOW);
14 15
15 Display* display = gfx::GetXDisplay(); 16 Display* display = gfx::GetXDisplay();
16 Atom property = XInternAtom(display, "_NET_WM_ICON", True); 17 Atom property = XInternAtom(display, "_NET_WM_ICON", True);
17 Atom actual_type; 18 Atom actual_type;
18 int actual_format; 19 int actual_format;
19 unsigned long bytes_after; // NOLINT: type required by XGetWindowProperty 20 unsigned long bytes_after; // NOLINT: type required by XGetWindowProperty
20 unsigned long size; 21 unsigned long size;
21 long* data; 22 long* data;
22 23
24 std::unique_ptr<gfx::X11ErrorTracker> error_tracker(
sky 2016/08/26 16:40:35 Please add a comment here, something similar to Da
qiangchen 2016/08/26 17:30:01 Done.
25 new gfx::X11ErrorTracker());
23 int status = XGetWindowProperty(display, id.id, property, 0L, ~0L, False, 26 int status = XGetWindowProperty(display, id.id, property, 0L, ~0L, False,
24 AnyPropertyType, &actual_type, &actual_format, 27 AnyPropertyType, &actual_type, &actual_format,
25 &size, &bytes_after, 28 &size, &bytes_after,
26 reinterpret_cast<unsigned char**>(&data)); 29 reinterpret_cast<unsigned char**>(&data));
30 error_tracker.reset();
31
27 if (status != Success) { 32 if (status != Success) {
28 return gfx::ImageSkia(); 33 return gfx::ImageSkia();
29 } 34 }
30 35
31 // The format of |data| is concatenation of sections like 36 // The format of |data| is concatenation of sections like
32 // [width, height, pixel data of size width * height], and the total bytes 37 // [width, height, pixel data of size width * height], and the total bytes
33 // number of |data| is |size|. And here we are picking the largest icon. 38 // number of |data| is |size|. And here we are picking the largest icon.
34 int width = 0; 39 int width = 0;
35 int height = 0; 40 int height = 0;
36 int start = 0; 41 int start = 0;
(...skipping 18 matching lines...) Expand all
55 for (long y = 0; y < height; ++y) { 60 for (long y = 0; y < height; ++y) {
56 for (long x = 0; x < width; ++x) { 61 for (long x = 0; x < width; ++x) {
57 pixels_data[result.rowBytesAsPixels() * y + x] = 62 pixels_data[result.rowBytesAsPixels() * y + x] =
58 static_cast<uint32_t>(data[start + width * y + x]); 63 static_cast<uint32_t>(data[start + width * y + x]);
59 } 64 }
60 } 65 }
61 66
62 XFree(data); 67 XFree(data);
63 return gfx::ImageSkia::CreateFrom1xBitmap(result); 68 return gfx::ImageSkia::CreateFrom1xBitmap(result);
64 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698