Remove extra newlines

This commit is contained in:
Kevin Sawicki 2017-05-18 16:51:50 -07:00
parent 7aacf786d6
commit 7e185ef1a3
8 changed files with 0 additions and 10 deletions

View file

@ -17,7 +17,6 @@ DevToolsContentsResizingStrategy::DevToolsContentsResizingStrategy(
!bounds_.y()) { !bounds_.y()) {
} }
void DevToolsContentsResizingStrategy::CopyFrom( void DevToolsContentsResizingStrategy::CopyFrom(
const DevToolsContentsResizingStrategy& strategy) { const DevToolsContentsResizingStrategy& strategy) {
bounds_ = strategy.bounds(); bounds_ = strategy.bounds();

View file

@ -145,7 +145,6 @@ class DispatcherImpl : public DevToolsEmbedderMessageDispatcher {
base::Unretained(delegate))); base::Unretained(delegate)));
} }
private: private:
using Handler = base::Callback<bool(const DispatchCallback&, using Handler = base::Callback<bool(const DispatchCallback&,
const base::ListValue&)>; const base::ListValue&)>;

View file

@ -39,7 +39,6 @@ const char kError[] = "error";
// JSON RPC 2.0 spec: http://www.jsonrpc.org/specification#error_object // JSON RPC 2.0 spec: http://www.jsonrpc.org/specification#error_object
const int kErrorInvalidParams = -32602; const int kErrorInvalidParams = -32602;
bool ParseCommand(const base::DictionaryValue* command, bool ParseCommand(const base::DictionaryValue* command,
int* id, int* id,
std::string* method, std::string* method,

View file

@ -100,7 +100,6 @@ void ViewsDelegate::OnBeforeWidgetInit(
} }
} }
bool ViewsDelegate::WindowManagerProvidesTitleBar(bool maximized) { bool ViewsDelegate::WindowManagerProvidesTitleBar(bool maximized) {
#if defined(OS_LINUX) #if defined(OS_LINUX)
// On Ubuntu Unity, the system always provides a title bar for maximized // On Ubuntu Unity, the system always provides a title bar for maximized

View file

@ -59,8 +59,6 @@ class ViewsDelegate : public views::ViewsDelegate {
DISALLOW_COPY_AND_ASSIGN(ViewsDelegate); DISALLOW_COPY_AND_ASSIGN(ViewsDelegate);
}; };
} // namespace brightray } // namespace brightray
#endif // BRIGHTRAY_BROWSER_VIEWS_VIEWS_DELEGATE_H_ #endif // BRIGHTRAY_BROWSER_VIEWS_VIEWS_DELEGATE_H_

View file

@ -10,7 +10,6 @@ struct NotificationData {
std::wstring body_text; std::wstring body_text;
HBITMAP image = NULL; HBITMAP image = NULL;
NotificationData() = default; NotificationData() = default;
~NotificationData() { ~NotificationData() {

View file

@ -344,7 +344,6 @@ void DesktopNotificationController::DestroyToast(ToastInstance& inst) {
} }
} }
DesktopNotificationController::Notification::Notification( DesktopNotificationController::Notification::Notification(
const shared_ptr<NotificationData>& data) : const shared_ptr<NotificationData>& data) :
data_(data) { data_(data) {
@ -389,7 +388,6 @@ void DesktopNotificationController::Notification::Set(
data_->controller->StartAnimation(); data_->controller->StartAnimation();
} }
DesktopNotificationController::NotificationLink::NotificationLink( DesktopNotificationController::NotificationLink::NotificationLink(
DesktopNotificationController* controller) : DesktopNotificationController* controller) :
shared_ptr(make_shared<NotificationData>()) { shared_ptr(make_shared<NotificationData>()) {

View file

@ -5,7 +5,6 @@
#import "main_delegate.h" #import "main_delegate.h"
#include "base/command_line.h" #include "base/command_line.h"
#include "base/mac/bundle_locations.h" #include "base/mac/bundle_locations.h"
#include "base/mac/foundation_util.h" #include "base/mac/foundation_util.h"