Style fixups

This commit is contained in:
Paul Betts 2015-02-10 17:14:26 -08:00
parent 8a7acfc6c0
commit 86de75deef
5 changed files with 11 additions and 16 deletions

View file

@ -2,10 +2,6 @@
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
namespace gfx {
class Image;
}
#include "atom/browser/api/atom_api_window.h"
#include "atom/browser/api/atom_api_web_contents.h"
@ -13,8 +9,8 @@ class Image;
#include "atom/browser/native_window.h"
#include "atom/common/native_mate_converters/gfx_converter.h"
#include "atom/common/native_mate_converters/gurl_converter.h"
#include "atom/common/native_mate_converters/string16_converter.h"
#include "atom/common/native_mate_converters/image_converter.h"
#include "atom/common/native_mate_converters/string16_converter.h"
#include "content/public/browser/render_process_host.h"
#include "native_mate/callback.h"
#include "native_mate/constructor.h"
@ -406,7 +402,7 @@ void Window::SetProgressBar(double progress) {
}
void Window::SetOverlayIcon(const gfx::Image& overlay,
const std::string& description) {
const std::string& description) {
window_->SetOverlayIcon(overlay, description);
}