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

Side by Side Diff: chrome/test/base/testing_profile.cc

Issue 2107493002: Offer user to send feedback from profile error dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pkasting's & droger's Created 4 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/test/base/testing_profile.h" 5 #include "chrome/test/base/testing_profile.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/base_paths.h" 9 #include "base/base_paths.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 new BookmarkModel(base::WrapUnique(new ChromeBookmarkClient( 222 new BookmarkModel(base::WrapUnique(new ChromeBookmarkClient(
223 profile, ManagedBookmarkServiceFactory::GetForProfile(profile))))); 223 profile, ManagedBookmarkServiceFactory::GetForProfile(profile)))));
224 bookmark_model->Load(profile->GetPrefs(), profile->GetPath(), 224 bookmark_model->Load(profile->GetPrefs(), profile->GetPath(),
225 profile->GetIOTaskRunner(), 225 profile->GetIOTaskRunner(),
226 content::BrowserThread::GetTaskRunnerForThread( 226 content::BrowserThread::GetTaskRunnerForThread(
227 content::BrowserThread::UI)); 227 content::BrowserThread::UI));
228 return std::move(bookmark_model); 228 return std::move(bookmark_model);
229 } 229 }
230 230
231 void TestProfileErrorCallback(WebDataServiceWrapper::ErrorType error_type, 231 void TestProfileErrorCallback(WebDataServiceWrapper::ErrorType error_type,
232 sql::InitStatus status) { 232 sql::InitStatus status,
233 const std::string& diagnostics) {
233 NOTREACHED(); 234 NOTREACHED();
234 } 235 }
235 236
236 std::unique_ptr<KeyedService> BuildWebDataService( 237 std::unique_ptr<KeyedService> BuildWebDataService(
237 content::BrowserContext* context) { 238 content::BrowserContext* context) {
238 const base::FilePath& context_path = context->GetPath(); 239 const base::FilePath& context_path = context->GetPath();
239 return base::WrapUnique(new WebDataServiceWrapper( 240 return base::WrapUnique(new WebDataServiceWrapper(
240 context_path, g_browser_process->GetApplicationLocale(), 241 context_path, g_browser_process->GetApplicationLocale(),
241 BrowserThread::GetTaskRunnerForThread(BrowserThread::UI), 242 BrowserThread::GetTaskRunnerForThread(BrowserThread::UI),
242 BrowserThread::GetTaskRunnerForThread(BrowserThread::DB), 243 BrowserThread::GetTaskRunnerForThread(BrowserThread::DB),
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 // Note: Owned by |original_profile|. 1070 // Note: Owned by |original_profile|.
1070 return new TestingProfile(path_, delegate_, 1071 return new TestingProfile(path_, delegate_,
1071 #if defined(ENABLE_EXTENSIONS) 1072 #if defined(ENABLE_EXTENSIONS)
1072 extension_policy_, 1073 extension_policy_,
1073 #endif 1074 #endif
1074 std::move(pref_service_), original_profile, 1075 std::move(pref_service_), original_profile,
1075 guest_session_, supervised_user_id_, 1076 guest_session_, supervised_user_id_,
1076 std::move(policy_service_), testing_factories_, 1077 std::move(policy_service_), testing_factories_,
1077 profile_name_); 1078 profile_name_);
1078 } 1079 }
OLDNEW
« no previous file with comments | « chrome/browser/web_data_service_factory.cc ('k') | components/history/core/browser/history_backend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698