summaryrefslogtreecommitdiffstats
path: root/content/public/browser/browser_main_runner.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/public/browser/browser_main_runner.h')
-rw-r--r--content/public/browser/browser_main_runner.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/content/public/browser/browser_main_runner.h b/content/public/browser/browser_main_runner.h
deleted file mode 100644
index 97fbf42..0000000
--- a/content/public/browser/browser_main_runner.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright (c) 2012 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 CONTENT_PUBLIC_BROWSER_BROWSER_MAIN_RUNNER_H_
-#define CONTENT_PUBLIC_BROWSER_BROWSER_MAIN_RUNNER_H_
-#pragma once
-
-#include "base/basictypes.h"
-#include "content/common/content_export.h"
-
-namespace content {
-
-struct MainFunctionParams;
-
-// This class is responsible for browser initialization, running and shutdown.
-class BrowserMainRunner {
- public:
- virtual ~BrowserMainRunner() {}
-
- // Create a new BrowserMainRunner object.
- static BrowserMainRunner* Create();
-
- // Initialize all necessary browser state. The |parameters| values will be
- // copied.
- virtual int Initialize(const content::MainFunctionParams& parameters) = 0;
-
- // Perform the default run logic.
- virtual int Run() = 0;
-
- // Shut down the browser state.
- virtual void Shutdown() = 0;
-};
-
-} // namespace content
-
-#endif // CONTENT_PUBLIC_BROWSER_BROWSER_MAIN_RUNNER_H_