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

Unified Diff: chrome/browser/ui/app_list/fast_show_pickler.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
Index: chrome/browser/ui/app_list/fast_show_pickler.h
diff --git a/chrome/browser/ui/app_list/fast_show_pickler.h b/chrome/browser/ui/app_list/fast_show_pickler.h
index 2f07f8649410ddfe18c78bb57cf7c88ad3e56e22..be3e53367f42dc2e9caee3c1df26eebad570ab2a 100644
--- a/chrome/browser/ui/app_list/fast_show_pickler.h
+++ b/chrome/browser/ui/app_list/fast_show_pickler.h
@@ -21,13 +21,13 @@ class FastShowPickler {
// Pickles a subset of the data in |model| that is useful for doing a fast
// show of the app list.
- static scoped_ptr<Pickle> PickleAppListModelForFastShow(
+ static scoped_ptr<base::Pickle> PickleAppListModelForFastShow(
app_list::AppListModel* model);
// Given a Pickle created by PickleAppListModelForFastShow(), this creates an
// AppListModel that represents it.
static scoped_ptr<app_list::AppListModel> UnpickleAppListModelForFastShow(
- Pickle* pickle);
+ base::Pickle* pickle);
// Copies parts that are needed to show the app list quickly on startup from
// |src| to |dest|.
@@ -37,8 +37,9 @@ class FastShowPickler {
private:
// Private static methods allow friend access to AppListItem methods.
static scoped_ptr<app_list::AppListItem> UnpickleAppListItem(
- PickleIterator* it);
- static bool PickleAppListItem(Pickle* pickle, app_list::AppListItem* item);
+ base::PickleIterator* it);
+ static bool PickleAppListItem(base::Pickle* pickle,
+ app_list::AppListItem* item);
static void CopyOverItem(app_list::AppListItem* src_item,
app_list::AppListItem* dest_item);
};

Powered by Google App Engine
This is Rietveld 408576698