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

Side by Side Diff: chrome/browser/ui/app_list/app_list_service_disabled.cc

Issue 22730003: Warm-up the App List when enabled from the webstore and not shown. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 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
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 #include "base/files/file_path.h" 5 #include "base/files/file_path.h"
6 #include "base/memory/singleton.h" 6 #include "base/memory/singleton.h"
7 #include "chrome/browser/ui/app_list/app_list_service.h" 7 #include "chrome/browser/ui/app_list/app_list_service.h"
8 8
9 namespace { 9 namespace {
10 10
(...skipping 13 matching lines...) Expand all
24 virtual void HandleFirstRun() OVERRIDE {} 24 virtual void HandleFirstRun() OVERRIDE {}
25 virtual void Init(Profile* initial_profile) OVERRIDE {} 25 virtual void Init(Profile* initial_profile) OVERRIDE {}
26 26
27 virtual base::FilePath GetProfilePath( 27 virtual base::FilePath GetProfilePath(
28 const base::FilePath& user_data_dir) OVERRIDE { 28 const base::FilePath& user_data_dir) OVERRIDE {
29 return base::FilePath(); 29 return base::FilePath();
30 } 30 }
31 virtual void SetProfilePath(const base::FilePath& profile_path) OVERRIDE {} 31 virtual void SetProfilePath(const base::FilePath& profile_path) OVERRIDE {}
32 32
33 virtual void Show() OVERRIDE {} 33 virtual void Show() OVERRIDE {}
34 virtual void CreateForProfile(Profile* profile) OVERRIDE {}
34 virtual void ShowForProfile(Profile* profile) OVERRIDE {} 35 virtual void ShowForProfile(Profile* profile) OVERRIDE {}
35 virtual void DismissAppList() OVERRIDE {} 36 virtual void DismissAppList() OVERRIDE {}
36 37
37 virtual Profile* GetCurrentAppListProfile() OVERRIDE { return NULL; } 38 virtual Profile* GetCurrentAppListProfile() OVERRIDE { return NULL; }
38 virtual bool IsAppListVisible() const OVERRIDE { return false; } 39 virtual bool IsAppListVisible() const OVERRIDE { return false; }
39 virtual void EnableAppList(Profile* initial_profile) OVERRIDE {} 40 virtual void EnableAppList(Profile* initial_profile) OVERRIDE {}
40 41
41 virtual AppListControllerDelegate* CreateControllerDelegate() OVERRIDE { 42 virtual AppListControllerDelegate* CreateControllerDelegate() OVERRIDE {
42 return NULL; 43 return NULL;
43 } 44 }
(...skipping 13 matching lines...) Expand all
57 } 58 }
58 59
59 // static 60 // static
60 void AppListService::InitAll(Profile* initial_profile) {} 61 void AppListService::InitAll(Profile* initial_profile) {}
61 62
62 // static 63 // static
63 void AppListService::RegisterPrefs(PrefRegistrySimple* registry) {} 64 void AppListService::RegisterPrefs(PrefRegistrySimple* registry) {}
64 65
65 // static 66 // static
66 void AppListService::RecordShowTimings(const CommandLine& command_line) {} 67 void AppListService::RecordShowTimings(const CommandLine& command_line) {}
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/app_list_service.h ('k') | chrome/browser/ui/app_list/app_list_service_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698