| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |