15 lines
466 B
C++
15 lines
466 B
C++
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
||
|
// Copyright (c) 2013 Adam Roben <adam@roben.org>. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE-CHROMIUM file.
|
||
|
|
||
|
#include "atom/browser/ui/inspectable_web_contents_view_delegate.h"
|
||
|
|
||
|
namespace atom {
|
||
|
|
||
|
gfx::ImageSkia InspectableWebContentsViewDelegate::GetDevToolsWindowIcon() {
|
||
|
return gfx::ImageSkia();
|
||
|
}
|
||
|
|
||
|
} // namespace atom
|