Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(696)

Unified Diff: chrome/browser/chromeos/status/network_menu.cc

Issue 512663002: Cleanup: Remove misc unneeded grit includes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/test/test_shelf_delegate.cc ('k') | chrome/browser/ui/ash/system_tray_delegate_chromeos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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),
« no previous file with comments | « ash/test/test_shelf_delegate.cc ('k') | chrome/browser/ui/ash/system_tray_delegate_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698