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

Unified Diff: third_party/WebKit/Source/modules/permissions/PermissionController.h

Issue 2392893002: Remove PermissionController.* files (Closed)
Patch Set: Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/permissions/PermissionController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/permissions/PermissionController.h
diff --git a/third_party/WebKit/Source/modules/permissions/PermissionController.h b/third_party/WebKit/Source/modules/permissions/PermissionController.h
deleted file mode 100644
index bec17ea8258cdd23893f3dd55d63122ae24e2fe9..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/modules/permissions/PermissionController.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef PermissionController_h
-#define PermissionController_h
-
-#include "core/frame/DOMWindowProperty.h"
-#include "modules/ModulesExport.h"
-#include "platform/Supplementable.h"
-
-namespace blink {
-
-class WebPermissionClient;
-
-class MODULES_EXPORT PermissionController final
- : public GarbageCollectedFinalized<PermissionController>,
- public Supplement<LocalFrame>,
- public DOMWindowProperty {
- WTF_MAKE_NONCOPYABLE(PermissionController);
- USING_GARBAGE_COLLECTED_MIXIN(PermissionController);
-
- public:
- virtual ~PermissionController();
-
- static void provideTo(LocalFrame&, WebPermissionClient*);
- static PermissionController* from(LocalFrame&);
- static const char* supplementName();
-
- WebPermissionClient* client() const;
-
- DECLARE_VIRTUAL_TRACE();
-
- private:
- PermissionController(LocalFrame&, WebPermissionClient*);
-
- // Inherited from DOMWindowProperty.
- void frameDestroyed() override;
-
- WebPermissionClient* m_client;
-};
-
-} // namespace blink
-
-#endif // PermissionController_h
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/permissions/PermissionController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698