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

Side by Side Diff: components/webdata/encryptor/ie7_password.cc

Issue 14348027: Move ie7_password namespace to //components, so it can be used by components. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix order of Win includes. Created 7 years, 8 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 | « components/webdata/encryptor/ie7_password.h ('k') | no next file » | 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/password_manager/ie7_password.h" 5 #include "components/webdata/encryptor/ie7_password.h"
6 6
7 #include <wincrypt.h> 7 #include <wincrypt.h>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/sha1.h" 12 #include "base/sha1.h"
13 #include "base/string_util.h" 13 #include "base/string_util.h"
14 #include "base/stringprintf.h" 14 #include "base/stringprintf.h"
15 15
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 GetUserPassFromData(decrypted_data, username, password); 135 GetUserPassFromData(decrypted_data, username, password);
136 136
137 LocalFree(output.pbData); 137 LocalFree(output.pbData);
138 return true; 138 return true;
139 } 139 }
140 140
141 return false; 141 return false;
142 } 142 }
143 143
144 } // namespace ie7_password 144 } // namespace ie7_password
OLDNEW
« no previous file with comments | « components/webdata/encryptor/ie7_password.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698