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

Unified Diff: chrome/browser/ui/views/status_icons/status_tray_win.cc

Issue 6254011: Move UI-relevant Windows files to ui/base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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/infobars/infobars.cc ('k') | chrome/default_plugin/plugin_impl_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/status_icons/status_tray_win.cc
===================================================================
--- chrome/browser/ui/views/status_icons/status_tray_win.cc (revision 71828)
+++ chrome/browser/ui/views/status_icons/status_tray_win.cc (working copy)
@@ -4,9 +4,9 @@
#include "chrome/browser/ui/views/status_icons/status_tray_win.h"
-#include "app/win/hwnd_util.h"
#include "chrome/browser/ui/views/status_icons/status_icon_win.h"
#include "chrome/common/chrome_constants.h"
+#include "ui/base/win/hwnd_util.h"
static const UINT kStatusIconMessage = WM_APP + 1;
@@ -25,7 +25,7 @@
// Create an offscreen window for handling messages for the status icons.
window_ = CreateWindow(chrome::kStatusTrayWindowClass,
0, 0, 0, 0, 0, 0, HWND_MESSAGE, 0, hinst, 0);
- app::win::SetWindowUserData(window_, this);
+ ui::SetWindowUserData(window_, this);
}
LRESULT CALLBACK StatusTrayWin::WndProcStatic(HWND hwnd,
« no previous file with comments | « chrome/browser/ui/views/infobars/infobars.cc ('k') | chrome/default_plugin/plugin_impl_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698