Index: chrome/browser/chromeos/status/network_menu.cc |
diff --git a/chrome/browser/chromeos/status/network_menu.cc b/chrome/browser/chromeos/status/network_menu.cc |
index 4efcc07ecdc5fc6fb1d658433c6a9facf14674a0..cf4fd1eee841369e95a93b31496a5c89bc4fe2c1 100644 |
--- a/chrome/browser/chromeos/status/network_menu.cc |
+++ b/chrome/browser/chromeos/status/network_menu.cc |
@@ -6,7 +6,6 @@ |
#include <algorithm> |
-#include "ash/resources/grit/ash_resources.h" |
#include "ash/shell.h" |
#include "ash/shell_delegate.h" |
#include "ash/strings/grit/ash_strings.h" |
@@ -75,8 +74,11 @@ class NetworkMenuModel : public ui::MenuModel { |
sub_menu_model(NULL), |
flags(0) { |
} |
- MenuItem(ui::MenuModel::ItemType type, base::string16 label, gfx::ImageSkia icon, |
- const std::string& service_path, int flags) |
+ MenuItem(ui::MenuModel::ItemType type, |
+ base::string16 label, |
+ gfx::ImageSkia icon, |
+ const std::string& service_path, |
+ int flags) |
: type(type), |
label(label), |
icon(icon), |
@@ -84,8 +86,11 @@ class NetworkMenuModel : public ui::MenuModel { |
sub_menu_model(NULL), |
flags(flags) { |
} |
- MenuItem(ui::MenuModel::ItemType type, base::string16 label, gfx::ImageSkia icon, |
- NetworkMenuModel* sub_menu_model, int flags) |
+ MenuItem(ui::MenuModel::ItemType type, |
+ base::string16 label, |
+ gfx::ImageSkia icon, |
+ NetworkMenuModel* sub_menu_model, |
+ int flags) |
: type(type), |
label(label), |
icon(icon), |