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

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

Issue 261363002: Rename BrowserPluginGuestManagerDelegate to BrowserPluginGuestManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@guestview_manager_cleanupguestmanager
Patch Set: Fixed Android Build (Hopefully) Created 6 years, 7 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 "build/build_config.h" 7 #include "build/build_config.h"
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 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
821 #endif 821 #endif
822 } 822 }
823 return host_content_settings_map_.get(); 823 return host_content_settings_map_.get();
824 } 824 }
825 825
826 content::GeolocationPermissionContext* 826 content::GeolocationPermissionContext*
827 TestingProfile::GetGeolocationPermissionContext() { 827 TestingProfile::GetGeolocationPermissionContext() {
828 return ChromeGeolocationPermissionContextFactory::GetForProfile(this); 828 return ChromeGeolocationPermissionContextFactory::GetForProfile(this);
829 } 829 }
830 830
831 content::BrowserPluginGuestManagerDelegate* 831 content::BrowserPluginGuestManager* TestingProfile::GetGuestManager() {
832 TestingProfile::GetGuestManagerDelegate() {
833 return GuestViewManager::FromBrowserContext(this); 832 return GuestViewManager::FromBrowserContext(this);
834 } 833 }
835 834
836 std::wstring TestingProfile::GetName() { 835 std::wstring TestingProfile::GetName() {
837 return std::wstring(); 836 return std::wstring();
838 } 837 }
839 838
840 std::wstring TestingProfile::GetID() { 839 std::wstring TestingProfile::GetID() {
841 return id_; 840 return id_;
842 } 841 }
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
978 path_, 977 path_,
979 delegate_, 978 delegate_,
980 extension_policy_, 979 extension_policy_,
981 pref_service_.Pass(), 980 pref_service_.Pass(),
982 incognito_, 981 incognito_,
983 guest_session_, 982 guest_session_,
984 managed_user_id_, 983 managed_user_id_,
985 policy_service_.Pass(), 984 policy_service_.Pass(),
986 testing_factories_)); 985 testing_factories_));
987 } 986 }
OLDNEW
« no previous file with comments | « chrome/test/base/testing_profile.h ('k') | content/browser/browser_plugin/browser_plugin_embedder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698