summaryrefslogtreecommitdiffstats
path: root/chromium/ui/views/examples/content_client/examples_browser_main_parts.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/views/examples/content_client/examples_browser_main_parts.h')
-rw-r--r--chromium/ui/views/examples/content_client/examples_browser_main_parts.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/chromium/ui/views/examples/content_client/examples_browser_main_parts.h b/chromium/ui/views/examples/content_client/examples_browser_main_parts.h
deleted file mode 100644
index c3e3172c6d5..00000000000
--- a/chromium/ui/views/examples/content_client/examples_browser_main_parts.h
+++ /dev/null
@@ -1,57 +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 UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_
-#define UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_
-
-#include "base/basictypes.h"
-#include "base/memory/scoped_ptr.h"
-#include "content/public/browser/browser_main_parts.h"
-
-namespace content {
-class ShellBrowserContext;
-struct MainFunctionParams;
-}
-
-namespace wm {
-class WMTestHelper;
-}
-
-namespace views {
-class ViewsDelegate;
-
-namespace examples {
-
-class ExamplesBrowserMainParts : public content::BrowserMainParts {
- public:
- explicit ExamplesBrowserMainParts(
- const content::MainFunctionParams& parameters);
- virtual ~ExamplesBrowserMainParts();
-
- // Overridden from content::BrowserMainParts:
- virtual void PreMainMessageLoopRun() OVERRIDE;
- virtual bool MainMessageLoopRun(int* result_code) OVERRIDE;
- virtual void PostMainMessageLoopRun() OVERRIDE;
-
- content::ShellBrowserContext* browser_context() {
- return browser_context_.get();
- }
-
- private:
- scoped_ptr<content::ShellBrowserContext> browser_context_;
-
- scoped_ptr<ViewsDelegate> views_delegate_;
-
-#if defined(OS_CHROMEOS)
- // Enable a minimal set of views::corewm to be initialized.
- scoped_ptr<wm::WMTestHelper> wm_test_helper_;
-#endif
-
- DISALLOW_COPY_AND_ASSIGN(ExamplesBrowserMainParts);
-};
-
-} // namespace examples
-} // namespace views
-
-#endif // UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_