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

Side by Side Diff: chrome/browser/ui/app_list/test/fake_profile.cc

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 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 "chrome/browser/ui/app_list/test/fake_profile.h" 5 #include "chrome/browser/ui/app_list/test/fake_profile.h"
6 6
7 FakeProfile::FakeProfile(const std::string& name) 7 FakeProfile::FakeProfile(const std::string& name)
8 : name_(name) { 8 : name_(name) {
9 } 9 }
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 } 57 }
58 58
59 content::ResourceContext* FakeProfile::GetResourceContext() { 59 content::ResourceContext* FakeProfile::GetResourceContext() {
60 return NULL; 60 return NULL;
61 } 61 }
62 62
63 content::BrowserPluginGuestManager* FakeProfile::GetGuestManager() { 63 content::BrowserPluginGuestManager* FakeProfile::GetGuestManager() {
64 return NULL; 64 return NULL;
65 } 65 }
66 66
67 quota::SpecialStoragePolicy* FakeProfile::GetSpecialStoragePolicy() { 67 storage::SpecialStoragePolicy* FakeProfile::GetSpecialStoragePolicy() {
68 return NULL; 68 return NULL;
69 } 69 }
70 70
71 content::PushMessagingService* FakeProfile::GetPushMessagingService() { 71 content::PushMessagingService* FakeProfile::GetPushMessagingService() {
72 return NULL; 72 return NULL;
73 } 73 }
74 74
75 content::SSLHostStateDelegate* FakeProfile::GetSSLHostStateDelegate() { 75 content::SSLHostStateDelegate* FakeProfile::GetSSLHostStateDelegate() {
76 return NULL; 76 return NULL;
77 } 77 }
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 bool FakeProfile::WasCreatedByVersionOrLater(const std::string& version) { 195 bool FakeProfile::WasCreatedByVersionOrLater(const std::string& version) {
196 return false; 196 return false;
197 } 197 }
198 198
199 void FakeProfile::SetExitType(ExitType exit_type) { 199 void FakeProfile::SetExitType(ExitType exit_type) {
200 } 200 }
201 201
202 Profile::ExitType FakeProfile::GetLastSessionExitType() { 202 Profile::ExitType FakeProfile::GetLastSessionExitType() {
203 return EXIT_NORMAL; 203 return EXIT_NORMAL;
204 } 204 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/test/fake_profile.h ('k') | chrome/browser/ui/cocoa/content_settings/cookie_details_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698