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

Unified Diff: components/autofill/browser/crypto/rc4_decryptor.h

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/autofill/browser/credit_card_unittest.cc ('k') | components/autofill/browser/data_driven_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/browser/crypto/rc4_decryptor.h
diff --git a/chrome/browser/autofill/crypto/rc4_decryptor.h b/components/autofill/browser/crypto/rc4_decryptor.h
similarity index 91%
rename from chrome/browser/autofill/crypto/rc4_decryptor.h
rename to components/autofill/browser/crypto/rc4_decryptor.h
index 462e0868699b6bb574b28e126633c5620ad1ff80..2dff640c4009a93d441985435bf797be86092652 100644
--- a/chrome/browser/autofill/crypto/rc4_decryptor.h
+++ b/components/autofill/browser/crypto/rc4_decryptor.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_AUTOFILL_CRYPTO_RC4_DECRYPTOR_H_
-#define CHROME_BROWSER_AUTOFILL_CRYPTO_RC4_DECRYPTOR_H_
+#ifndef COMPONENTS_AUTOFILL_BROWSER_CRYPTO_RC4_DECRYPTOR_H_
+#define COMPONENTS_AUTOFILL_BROWSER_CRYPTO_RC4_DECRYPTOR_H_
#include <string>
#include "base/basictypes.h"
@@ -14,7 +14,10 @@
// First, it uses a non-standard key size (160 bit), not supported by Microsoft
// (it supports only 40 and 128 bit for RC4). Second, it codes 128 words with
// value 0x0020 at the beginning of the code to enhance security.
-// This class used in chrome/browser/autofill/autofill_ie_toolbar_import_win.cc.
+//
+// This class used in
+// components/autofill/browser/autofill_ie_toolbar_import_win.cc.
+//
// This class should not be used anywhere else!!!
class RC4Decryptor {
public:
@@ -100,4 +103,4 @@ class RC4Decryptor {
Rc4Key key_;
};
-#endif // CHROME_BROWSER_AUTOFILL_CRYPTO_RC4_DECRYPTOR_H_
+#endif // COMPONENTS_AUTOFILL_BROWSER_CRYPTO_RC4_DECRYPTOR_H_
« no previous file with comments | « components/autofill/browser/credit_card_unittest.cc ('k') | components/autofill/browser/data_driven_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698