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

Side by Side Diff: chrome/browser/ui/app_list/fast_show_pickler.h

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_UI_APP_LIST_FAST_SHOW_PICKLER_H_ 5 #ifndef CHROME_BROWSER_UI_APP_LIST_FAST_SHOW_PICKLER_H_
6 #define CHROME_BROWSER_UI_APP_LIST_FAST_SHOW_PICKLER_H_ 6 #define CHROME_BROWSER_UI_APP_LIST_FAST_SHOW_PICKLER_H_
7 7
8 #include <memory>
8 #include <string> 9 #include <string>
9 10
10 #include "base/memory/scoped_ptr.h"
11 #include "base/pickle.h" 11 #include "base/pickle.h"
12 #include "ui/app_list/app_list_model.h" 12 #include "ui/app_list/app_list_model.h"
13 13
14 // Functions for pickling/unpickling AppListModel for fast show. Fast show is 14 // Functions for pickling/unpickling AppListModel for fast show. Fast show is
15 // where the app list is put on the screen using data retrieved from a cache 15 // where the app list is put on the screen using data retrieved from a cache
16 // before the extension system has loaded. 16 // before the extension system has loaded.
17 class FastShowPickler { 17 class FastShowPickler {
18 public: 18 public:
19 // The version that this pickler understands. 19 // The version that this pickler understands.
20 static const int kVersion; 20 static const int kVersion;
21 21
22 // Pickles a subset of the data in |model| that is useful for doing a fast 22 // Pickles a subset of the data in |model| that is useful for doing a fast
23 // show of the app list. 23 // show of the app list.
24 static scoped_ptr<base::Pickle> PickleAppListModelForFastShow( 24 static std::unique_ptr<base::Pickle> PickleAppListModelForFastShow(
25 app_list::AppListModel* model); 25 app_list::AppListModel* model);
26 26
27 // Given a Pickle created by PickleAppListModelForFastShow(), this creates an 27 // Given a Pickle created by PickleAppListModelForFastShow(), this creates an
28 // AppListModel that represents it. 28 // AppListModel that represents it.
29 static scoped_ptr<app_list::AppListModel> UnpickleAppListModelForFastShow( 29 static std::unique_ptr<app_list::AppListModel>
30 base::Pickle* pickle); 30 UnpickleAppListModelForFastShow(base::Pickle* pickle);
31 31
32 // Copies parts that are needed to show the app list quickly on startup from 32 // Copies parts that are needed to show the app list quickly on startup from
33 // |src| to |dest|. 33 // |src| to |dest|.
34 static void CopyOver( 34 static void CopyOver(
35 app_list::AppListModel* src, app_list::AppListModel* dest); 35 app_list::AppListModel* src, app_list::AppListModel* dest);
36 36
37 private: 37 private:
38 // Private static methods allow friend access to AppListItem methods. 38 // Private static methods allow friend access to AppListItem methods.
39 static scoped_ptr<app_list::AppListItem> UnpickleAppListItem( 39 static std::unique_ptr<app_list::AppListItem> UnpickleAppListItem(
40 base::PickleIterator* it); 40 base::PickleIterator* it);
41 static bool PickleAppListItem(base::Pickle* pickle, 41 static bool PickleAppListItem(base::Pickle* pickle,
42 app_list::AppListItem* item); 42 app_list::AppListItem* item);
43 static void CopyOverItem(app_list::AppListItem* src_item, 43 static void CopyOverItem(app_list::AppListItem* src_item,
44 app_list::AppListItem* dest_item); 44 app_list::AppListItem* dest_item);
45 }; 45 };
46 46
47 #endif // CHROME_BROWSER_UI_APP_LIST_FAST_SHOW_PICKLER_H_ 47 #endif // CHROME_BROWSER_UI_APP_LIST_FAST_SHOW_PICKLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/extension_uninstaller.h ('k') | chrome/browser/ui/app_list/fast_show_pickler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698