refactor: rename InspectableWebContents{Impl =>} (#24543)
This commit is contained in:
parent
eb550c57d3
commit
e4180b3a3a
13 changed files with 1274 additions and 1370 deletions
|
@ -14,12 +14,12 @@
|
|||
|
||||
namespace electron {
|
||||
|
||||
class InspectableWebContentsImpl;
|
||||
class InspectableWebContents;
|
||||
|
||||
class InspectableWebContentsViewMac : public InspectableWebContentsView {
|
||||
public:
|
||||
explicit InspectableWebContentsViewMac(
|
||||
InspectableWebContentsImpl* inspectable_web_contents_impl);
|
||||
InspectableWebContents* inspectable_web_contents);
|
||||
InspectableWebContentsViewMac(const InspectableWebContentsViewMac&) = delete;
|
||||
InspectableWebContentsViewMac& operator=(
|
||||
const InspectableWebContentsViewMac&) = delete;
|
||||
|
@ -35,13 +35,13 @@ class InspectableWebContentsViewMac : public InspectableWebContentsView {
|
|||
const DevToolsContentsResizingStrategy& strategy) override;
|
||||
void SetTitle(const base::string16& title) override;
|
||||
|
||||
InspectableWebContentsImpl* inspectable_web_contents() {
|
||||
InspectableWebContents* inspectable_web_contents() {
|
||||
return inspectable_web_contents_;
|
||||
}
|
||||
|
||||
private:
|
||||
// Owns us.
|
||||
InspectableWebContentsImpl* inspectable_web_contents_;
|
||||
InspectableWebContents* inspectable_web_contents_;
|
||||
|
||||
base::scoped_nsobject<ElectronInspectableWebContentsView> view_;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue