Rename CefBrowserHostImpl to AlloyBrowserHostImpl (see issue #2969)

After commit 38d8acfa18 this object is only used with the alloy runtime.
This commit is contained in:
Marshall Greenblatt
2020-09-22 15:54:02 -04:00
parent 9022d40e6a
commit e94a261bf5
100 changed files with 691 additions and 713 deletions

View File

@@ -18,7 +18,7 @@ class SequencedTaskRunner;
class Value;
} // namespace base
class CefBrowserHostImpl;
class AlloyBrowserHostImpl;
class PrefService;
// File management helper for DevTools.
@@ -26,7 +26,8 @@ class PrefService;
// chrome/browser/devtools/devtools_file_helper.cc.
class CefDevToolsFileManager {
public:
CefDevToolsFileManager(CefBrowserHostImpl* browser_impl, PrefService* prefs);
CefDevToolsFileManager(AlloyBrowserHostImpl* browser_impl,
PrefService* prefs);
void SaveToFile(const std::string& url,
const std::string& content,
@@ -68,7 +69,7 @@ class CefDevToolsFileManager {
const base::Value* arg3);
// Guaranteed to outlive this object.
CefBrowserHostImpl* browser_impl_;
AlloyBrowserHostImpl* browser_impl_;
PrefService* prefs_;
typedef std::map<std::string, base::FilePath> PathsMap;