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

Side by Side Diff: views/window/window_win.cc

Issue 915002: Create a toplevel gfx/ dir and seed it with icon_util.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « views/controls/tree/tree_view.cc ('k') | webkit/tools/pepper_test_plugin/test_page.html » ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "views/window/window_win.h" 5 #include "views/window/window_win.h"
6 6
7 #include <dwmapi.h> 7 #include <dwmapi.h>
8 #include <shellapi.h> 8 #include <shellapi.h>
9 9
10 #include "app/gfx/canvas_paint.h" 10 #include "app/gfx/canvas_paint.h"
11 #include "app/gfx/font.h" 11 #include "app/gfx/font.h"
12 #include "app/gfx/icon_util.h"
13 #include "app/gfx/path.h" 12 #include "app/gfx/path.h"
14 #include "app/l10n_util.h" 13 #include "app/l10n_util.h"
15 #include "app/resource_bundle.h" 14 #include "app/resource_bundle.h"
16 #include "app/theme_provider.h" 15 #include "app/theme_provider.h"
17 #include "app/win_util.h" 16 #include "app/win_util.h"
18 #include "base/win_util.h" 17 #include "base/win_util.h"
18 #include "gfx/icon_util.h"
19 #include "views/widget/root_view.h" 19 #include "views/widget/root_view.h"
20 #include "views/window/client_view.h" 20 #include "views/window/client_view.h"
21 #include "views/window/custom_frame_view.h" 21 #include "views/window/custom_frame_view.h"
22 #include "views/window/native_frame_view.h" 22 #include "views/window/native_frame_view.h"
23 #include "views/window/non_client_view.h" 23 #include "views/window/non_client_view.h"
24 #include "views/window/window_delegate.h" 24 #include "views/window/window_delegate.h"
25 25
26 namespace { 26 namespace {
27 27
28 static const int kDragFrameWindowAlpha = 200; 28 static const int kDragFrameWindowAlpha = 200;
(...skipping 1400 matching lines...) Expand 10 before | Expand all | Expand 10 after
1429 Window::CloseSecondaryWidget(root_view->GetWidget()); 1429 Window::CloseSecondaryWidget(root_view->GetWidget());
1430 return TRUE; 1430 return TRUE;
1431 } 1431 }
1432 } // namespace 1432 } // namespace
1433 1433
1434 void Window::CloseAllSecondaryWindows() { 1434 void Window::CloseAllSecondaryWindows() {
1435 EnumThreadWindows(GetCurrentThreadId(), WindowCallbackProc, 0); 1435 EnumThreadWindows(GetCurrentThreadId(), WindowCallbackProc, 0);
1436 } 1436 }
1437 1437
1438 } // namespace views 1438 } // namespace views
OLDNEW
« no previous file with comments | « views/controls/tree/tree_view.cc ('k') | webkit/tools/pepper_test_plugin/test_page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698