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

Unified Diff: chrome/browser/ui/webui/flags_ui.h

Issue 12545059: ifdef OS_NAME -> if defined(OS_NAME) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
Index: chrome/browser/ui/webui/flags_ui.h
diff --git a/chrome/browser/ui/webui/flags_ui.h b/chrome/browser/ui/webui/flags_ui.h
index 301ae86ffbb20e9d9415b8fd28385bf4a7884af3..d0c912fb2007cd935a2b34698ee76844326729fc 100644
--- a/chrome/browser/ui/webui/flags_ui.h
+++ b/chrome/browser/ui/webui/flags_ui.h
@@ -9,7 +9,7 @@
#include "content/public/browser/web_ui_controller.h"
#include "ui/base/layout.h"
-#ifdef OS_CHROMEOS
+#if defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/settings/device_settings_service.h"
#endif
@@ -29,12 +29,12 @@ class FlagsUI : public content::WebUIController {
static base::RefCountedMemory* GetFaviconResourceBytes(
ui::ScaleFactor scale_factor);
static void RegisterPrefs(PrefRegistrySimple* registry);
-#ifdef OS_CHROMEOS
+#if defined(OS_CHROMEOS)
static void RegisterUserPrefs(PrefRegistrySyncable* registry);
#endif
private:
-#ifdef OS_CHROMEOS
+#if defined(OS_CHROMEOS)
// On ChromeOS verifying if the owner is signed in is async operation and only
// after finishing it the UI can be properly populated. This function is the
// callback for whether the owner is signed in. It will respectively pick the

Powered by Google App Engine
This is Rietveld 408576698