| Index: content/browser/frame_host/frame_tree_node.h
|
| diff --git a/content/browser/frame_host/frame_tree_node.h b/content/browser/frame_host/frame_tree_node.h
|
| index fda8ecd3dfc21c11f62186c8b2e87fcaff0f4d1a..c108da5eebae48e680dc5b879e0556276f238a6e 100644
|
| --- a/content/browser/frame_host/frame_tree_node.h
|
| +++ b/content/browser/frame_host/frame_tree_node.h
|
| @@ -32,8 +32,7 @@
|
| // of those frames. We are mirroring this tree in the browser process. This
|
| // class represents a node in this tree and is a wrapper for all objects that
|
| // are frame-specific (as opposed to page-specific).
|
| -class CONTENT_EXPORT FrameTreeNode :
|
| - public base::trace_event::TraceLog::EnabledStateObserver {
|
| +class CONTENT_EXPORT FrameTreeNode {
|
| public:
|
| class Observer {
|
| public:
|
| @@ -65,7 +64,7 @@
|
| const std::string& unique_name,
|
| const blink::WebFrameOwnerProperties& frame_owner_properties);
|
|
|
| - ~FrameTreeNode() override;
|
| + ~FrameTreeNode();
|
|
|
| void AddObserver(Observer* observer);
|
| void RemoveObserver(Observer* observer);
|
| @@ -268,16 +267,10 @@
|
| // FrameTreeNode.
|
| void BeforeUnloadCanceled();
|
|
|
| - // TraceLog::EnabledStateObserver
|
| - void OnTraceLogEnabled() override;
|
| - void OnTraceLogDisabled() override {}
|
| -
|
| private:
|
| class OpenerDestroyedObserver;
|
|
|
| void set_parent(FrameTreeNode* parent) { parent_ = parent; }
|
| -
|
| - void TraceSnapshot() const;
|
|
|
| // The next available browser-global FrameTreeNode ID.
|
| static int next_frame_tree_node_id_;
|
|
|