diff --git a/SafeExamBrowser.Browser/BrowserApplicationController.cs b/SafeExamBrowser.Browser/BrowserApplicationController.cs
index f3035232..d3ab8868 100644
--- a/SafeExamBrowser.Browser/BrowserApplicationController.cs
+++ b/SafeExamBrowser.Browser/BrowserApplicationController.cs
@@ -10,7 +10,6 @@ using System;
using System.Collections.Generic;
using System.Linq;
using CefSharp;
-using SafeExamBrowser.Browser.Handlers;
using SafeExamBrowser.Contracts.Browser;
using SafeExamBrowser.Contracts.Configuration;
using SafeExamBrowser.Contracts.I18n;
@@ -103,9 +102,6 @@ namespace SafeExamBrowser.Browser
LogSeverity = LogSeverity.Info
};
- cefSettings.RegisterScheme(new CefCustomScheme { SchemeName = "seb", SchemeHandlerFactory = new SchemeHandlerFactory() });
- cefSettings.RegisterScheme(new CefCustomScheme { SchemeName = "sebs", SchemeHandlerFactory = new SchemeHandlerFactory() });
-
return cefSettings;
}
diff --git a/SafeExamBrowser.Browser/Handlers/SchemeHandlerFactory.cs b/SafeExamBrowser.Browser/Handlers/SchemeHandlerFactory.cs
deleted file mode 100644
index ba928001..00000000
--- a/SafeExamBrowser.Browser/Handlers/SchemeHandlerFactory.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (c) 2018 ETH Zürich, Educational Development and Technology (LET)
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-using CefSharp;
-
-namespace SafeExamBrowser.Browser.Handlers
-{
- ///