summaryrefslogtreecommitdiffstats
path: root/mandoline/ui/browser/browser_ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'mandoline/ui/browser/browser_ui.h')
-rw-r--r--mandoline/ui/browser/browser_ui.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/mandoline/ui/browser/browser_ui.h b/mandoline/ui/browser/browser_ui.h
deleted file mode 100644
index 96f71c0..0000000
--- a/mandoline/ui/browser/browser_ui.h
+++ /dev/null
@@ -1,32 +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 MANDOLINE_UI_BROWSER_BROWSER_UI_H_
-#define MANDOLINE_UI_BROWSER_BROWSER_UI_H_
-
-class GURL;
-
-namespace mojo {
-class ApplicationConnection;
-class ApplicationImpl;
-class View;
-}
-
-namespace mandoline {
-
-class BrowserManager;
-
-class BrowserUI {
- public:
- virtual ~BrowserUI() {}
- static BrowserUI* Create(mojo::ApplicationImpl* application_impl,
- BrowserManager* manager);
-
- // Loads the specified URL in the active tab.
- virtual void LoadURL(const GURL& url) = 0;
-};
-
-} // namespace mandoline
-
-#endif // MANDOLINE_UI_BROWSER_BROWSER_UI_H_