| Index: chromecast/browser/devtools/cast_dev_tools_delegate.cc
|
| diff --git a/chromecast/browser/devtools/cast_dev_tools_delegate.cc b/chromecast/browser/devtools/cast_dev_tools_delegate.cc
|
| deleted file mode 100644
|
| index 0e80eb55832b1288966797cde797dc553b6894c8..0000000000000000000000000000000000000000
|
| --- a/chromecast/browser/devtools/cast_dev_tools_delegate.cc
|
| +++ /dev/null
|
| @@ -1,38 +0,0 @@
|
| -// Copyright 2014 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 "chromecast/browser/devtools/cast_dev_tools_delegate.h"
|
| -
|
| -#include "base/macros.h"
|
| -#include "build/build_config.h"
|
| -#include "grit/shell_resources.h"
|
| -#include "ui/base/resource/resource_bundle.h"
|
| -
|
| -namespace chromecast {
|
| -namespace shell {
|
| -
|
| -// CastDevToolsDelegate -----------------------------------------------------
|
| -
|
| -CastDevToolsDelegate::CastDevToolsDelegate() {
|
| -}
|
| -
|
| -CastDevToolsDelegate::~CastDevToolsDelegate() {
|
| -}
|
| -
|
| -std::string CastDevToolsDelegate::GetDiscoveryPageHTML() {
|
| -#if defined(OS_ANDROID)
|
| - return std::string();
|
| -#else
|
| - return ResourceBundle::GetSharedInstance().GetRawDataResource(
|
| - IDR_CAST_SHELL_DEVTOOLS_DISCOVERY_PAGE).as_string();
|
| -#endif // defined(OS_ANDROID)
|
| -}
|
| -
|
| -std::string CastDevToolsDelegate::GetFrontendResource(
|
| - const std::string& path) {
|
| - return std::string();
|
| -}
|
| -
|
| -} // namespace shell
|
| -} // namespace chromecast
|
|
|