| Index: apps/shell/app_shell_content_browser_client.cc
|
| diff --git a/apps/shell/app_shell_content_browser_client.cc b/apps/shell/app_shell_content_browser_client.cc
|
| deleted file mode 100644
|
| index a5eedbd61283f06132d6215da992720364129b03..0000000000000000000000000000000000000000
|
| --- a/apps/shell/app_shell_content_browser_client.cc
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -// Copyright 2013 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.
|
| -
|
| -#include "apps/shell/app_shell_content_browser_client.h"
|
| -
|
| -#include "apps/shell/app_shell_browser_context.h"
|
| -#include "apps/shell/app_shell_browser_main_parts.h"
|
| -#include "content/shell/browser/shell_browser_context.h"
|
| -
|
| -namespace apps {
|
| -
|
| -AppShellContentBrowserClient::AppShellContentBrowserClient()
|
| - : browser_main_parts_(NULL) {
|
| -}
|
| -
|
| -AppShellContentBrowserClient::~AppShellContentBrowserClient() {
|
| -}
|
| -
|
| -content::BrowserMainParts* AppShellContentBrowserClient::CreateBrowserMainParts(
|
| - const content::MainFunctionParams& parameters) {
|
| - browser_main_parts_ = new AppShellBrowserMainParts(parameters);
|
| - return browser_main_parts_;
|
| -}
|
| -
|
| -net::URLRequestContextGetter*
|
| -AppShellContentBrowserClient::CreateRequestContext(
|
| - content::BrowserContext* content_browser_context,
|
| - content::ProtocolHandlerMap* protocol_handlers) {
|
| - // TODO(jamescook): Should this be an off-the-record context?
|
| - return browser_main_parts_->browser_context()->CreateRequestContext(
|
| - protocol_handlers);
|
| -}
|
| -
|
| -} // namespace apps
|
|
|