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

Side by Side Diff: app/os_exchange_data_win.cc

Issue 115309: Remove even more ATL dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | « app/os_exchange_data.h ('k') | app/os_exchange_data_win_unittest.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 (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 <shlobj.h>
6
7 #include "app/os_exchange_data.h" 5 #include "app/os_exchange_data.h"
8 6
9 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
10 #include "base/clipboard_util.h" 8 #include "base/clipboard_util.h"
11 #include "base/file_util.h" 9 #include "base/file_util.h"
12 #include "base/logging.h" 10 #include "base/logging.h"
13 #include "base/pickle.h" 11 #include "base/pickle.h"
14 #include "base/scoped_handle.h" 12 #include "base/scoped_handle.h"
15 #include "base/stl_util-inl.h" 13 #include "base/stl_util-inl.h"
16 #include "base/string_util.h" 14 #include "base/string_util.h"
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 descriptor->fgd[0].dwFlags = FD_LINKUI; 695 descriptor->fgd[0].dwFlags = FD_LINKUI;
698 696
699 GlobalUnlock(handle); 697 GlobalUnlock(handle);
700 698
701 STGMEDIUM* storage = new STGMEDIUM; 699 STGMEDIUM* storage = new STGMEDIUM;
702 storage->hGlobal = handle; 700 storage->hGlobal = handle;
703 storage->tymed = TYMED_HGLOBAL; 701 storage->tymed = TYMED_HGLOBAL;
704 storage->pUnkForRelease = NULL; 702 storage->pUnkForRelease = NULL;
705 return storage; 703 return storage;
706 } 704 }
OLDNEW
« no previous file with comments | « app/os_exchange_data.h ('k') | app/os_exchange_data_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698