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

Unified Diff: chrome/browser/about_flags.cc

Issue 290463002: Cleanup: Remove more unused flag resources or mark them as platform-specific. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 6 years, 7 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 | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/about_flags.cc
===================================================================
--- chrome/browser/about_flags.cc (revision 270335)
+++ chrome/browser/about_flags.cc (working copy)
@@ -10,7 +10,6 @@
#include <set>
#include <utility>
-#include "ash/ash_switches.h"
#include "base/command_line.h"
#include "base/memory/singleton.h"
#include "base/strings/string_number_conversions.h"
@@ -99,7 +98,7 @@
CommandLine::StringType GetSwitchString(const std::string& flag) {
CommandLine cmd_line(CommandLine::NO_PROGRAM);
cmd_line.AppendSwitch(flag);
- DCHECK(cmd_line.argv().size() == 2);
+ DCHECK_EQ(2U, cmd_line.argv().size());
return cmd_line.argv()[1];
}
@@ -1223,7 +1222,7 @@
kOsDesktop,
MULTI_VALUE_TYPE(kLCDTextChoices)
},
-#ifndef USE_AURA
+#if defined(OS_ANDROID)
piman 2014/05/15 16:57:47 Actually, we want this on mac too.
Lei Zhang 2014/05/20 02:38:21 Are you going to do that in a different CL soon? A
piman 2014/05/20 02:50:58 Basic support just got added last week - https://c
{
"delegated-renderer",
IDS_FLAGS_DELEGATED_RENDERER_NAME,
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698