summaryrefslogtreecommitdiffstats
path: root/chromium/ui/views/examples/content_client/examples_content_browser_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/views/examples/content_client/examples_content_browser_client.h')
-rw-r--r--chromium/ui/views/examples/content_client/examples_content_browser_client.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/chromium/ui/views/examples/content_client/examples_content_browser_client.h b/chromium/ui/views/examples/content_client/examples_content_browser_client.h
deleted file mode 100644
index b49d2c0528e..00000000000
--- a/chromium/ui/views/examples/content_client/examples_content_browser_client.h
+++ /dev/null
@@ -1,44 +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_CONTENT_BROWSER_CLIENT_H_
-#define UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_CONTENT_BROWSER_CLIENT_H_
-
-#include <string>
-
-#include "base/compiler_specific.h"
-#include "base/memory/scoped_ptr.h"
-#include "content/public/browser/content_browser_client.h"
-
-namespace content {
-class ShellBrowserContext;
-}
-
-namespace views {
-namespace examples {
-
-class ExamplesBrowserMainParts;
-
-class ExamplesContentBrowserClient : public content::ContentBrowserClient {
- public:
- ExamplesContentBrowserClient();
- virtual ~ExamplesContentBrowserClient();
-
- // Overridden from content::ContentBrowserClient:
- virtual content::BrowserMainParts* CreateBrowserMainParts(
- const content::MainFunctionParams& parameters) OVERRIDE;
- virtual net::URLRequestContextGetter* CreateRequestContext(
- content::BrowserContext* browser_context,
- content::ProtocolHandlerMap* protocol_handlers) OVERRIDE;
-
- private:
- ExamplesBrowserMainParts* examples_browser_main_parts_;
-
- DISALLOW_COPY_AND_ASSIGN(ExamplesContentBrowserClient);
-};
-
-} // namespace examples
-} // namespace views
-
-#endif // UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_CONTENT_BROWSER_CLIENT_H_