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

Unified Diff: components/autofill/core/common/form_field_data.h

Issue 1149113006: Move Pickle to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/autofill/core/common/form_data.h ('k') | components/bookmarks/browser/bookmark_node_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/core/common/form_field_data.h
diff --git a/components/autofill/core/common/form_field_data.h b/components/autofill/core/common/form_field_data.h
index ef96b73a469473f268526d5f31566f7f938b5da1..d43c2bb0c3113f5d9b90fde880b623c9d1beac63 100644
--- a/components/autofill/core/common/form_field_data.h
+++ b/components/autofill/core/common/form_field_data.h
@@ -10,8 +10,10 @@
#include "base/i18n/rtl.h"
#include "base/strings/string16.h"
+namespace base {
class Pickle;
class PickleIterator;
+}
namespace autofill {
@@ -58,8 +60,8 @@ struct FormFieldData {
// Serialize and deserialize FormFieldData. These are used when FormData objects
// are serialized and deserialized.
void SerializeFormFieldData(const FormFieldData& form_field_data,
- Pickle* serialized);
-bool DeserializeFormFieldData(PickleIterator* pickle_iterator,
+ base::Pickle* serialized);
+bool DeserializeFormFieldData(base::PickleIterator* pickle_iterator,
FormFieldData* form_field_data);
// So we can compare FormFieldDatas with EXPECT_EQ().
« no previous file with comments | « components/autofill/core/common/form_data.h ('k') | components/bookmarks/browser/bookmark_node_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698