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

Side by Side Diff: base/win_util.cc

Issue 46039: Removed unneeded includes of base/scoped_ptr.h. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 | « base/time_format.cc ('k') | chrome/browser/autocomplete/autocomplete_popup_model.h » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/win_util.h" 5 #include "base/win_util.h"
6 6
7 #include <map> 7 #include <map>
8 #include <sddl.h> 8 #include <sddl.h>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/registry.h" 11 #include "base/registry.h"
12 #include "base/scoped_handle.h" 12 #include "base/scoped_handle.h"
13 #include "base/scoped_ptr.h"
13 #include "base/singleton.h" 14 #include "base/singleton.h"
14 #include "base/string_util.h" 15 #include "base/string_util.h"
15 #include "base/tracked.h" 16 #include "base/tracked.h"
16 17
17 namespace win_util { 18 namespace win_util {
18 19
19 #define SIZEOF_STRUCT_WITH_SPECIFIED_LAST_MEMBER(struct_name, member) \ 20 #define SIZEOF_STRUCT_WITH_SPECIFIED_LAST_MEMBER(struct_name, member) \
20 offsetof(struct_name, member) + \ 21 offsetof(struct_name, member) + \
21 (sizeof static_cast<struct_name*>(NULL)->member) 22 (sizeof static_cast<struct_name*>(NULL)->member)
22 #define NONCLIENTMETRICS_SIZE_PRE_VISTA \ 23 #define NONCLIENTMETRICS_SIZE_PRE_VISTA \
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 452
452 #ifndef COPY_FILE_COPY_SYMLINK 453 #ifndef COPY_FILE_COPY_SYMLINK
453 #error You must install the Windows 2008 or Vista Software Development Kit and \ 454 #error You must install the Windows 2008 or Vista Software Development Kit and \
454 set it as your default include path to build this library. You can grab it by \ 455 set it as your default include path to build this library. You can grab it by \
455 searching for "download windows sdk 2008" in your favorite web search engine. \ 456 searching for "download windows sdk 2008" in your favorite web search engine. \
456 Also make sure you register the SDK with Visual Studio, by selecting \ 457 Also make sure you register the SDK with Visual Studio, by selecting \
457 "Integrate Windows SDK with Visual Studio 2005" from the Windows SDK \ 458 "Integrate Windows SDK with Visual Studio 2005" from the Windows SDK \
458 menu (see Start - All Programs - Microsoft Windows SDK - \ 459 menu (see Start - All Programs - Microsoft Windows SDK - \
459 Visual Studio Registration). 460 Visual Studio Registration).
460 #endif 461 #endif
OLDNEW
« no previous file with comments | « base/time_format.cc ('k') | chrome/browser/autocomplete/autocomplete_popup_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698