| Index: content/browser/frame_host/navigator.h
|
| diff --git a/content/browser/frame_host/navigator.h b/content/browser/frame_host/navigator.h
|
| index 6f9e52de55f290002422cabb240a53baf02c5a78..d52133e61e4c0ebc84447a2dd5552c95e2350a39 100644
|
| --- a/content/browser/frame_host/navigator.h
|
| +++ b/content/browser/frame_host/navigator.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_H_
|
| #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_H_
|
|
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/time/time.h"
|
| #include "content/browser/frame_host/navigator_delegate.h"
|
| @@ -188,7 +189,11 @@ class CONTENT_EXPORT Navigator : public base::RefCounted<Navigator> {
|
|
|
| protected:
|
| friend class base::RefCounted<Navigator>;
|
| + Navigator() = default;
|
| virtual ~Navigator() {}
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(Navigator);
|
| };
|
|
|
| } // namespace content
|
|
|