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

Unified Diff: chrome/browser/ui/cocoa/l10n_util.h

Issue 2747693003: Add missing include guards in Cocoa code. (Closed)
Patch Set: Fix nit Created 3 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/cocoa/l10n_util.h
diff --git a/chrome/browser/ui/cocoa/l10n_util.h b/chrome/browser/ui/cocoa/l10n_util.h
index 8457c7f8529545ae5ab4f9a0cbe0501e367853d9..7e6175c13c4f4cf9adf64776a699b07fd69e1b6e 100644
--- a/chrome/browser/ui/cocoa/l10n_util.h
+++ b/chrome/browser/ui/cocoa/l10n_util.h
@@ -2,6 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#ifndef CHROME_BROWSER_UI_COCOA_L10N_UTIL_H_
+#define CHROME_BROWSER_UI_COCOA_L10N_UTIL_H_
+
#import <Cocoa/Cocoa.h>
#include <stddef.h>
@@ -54,3 +57,5 @@ bool ShouldFlipWindowControlsInRTL();
NSImage* FlippedImage(NSImage* image);
} // namespace cocoa_l10n_util
+
+#endif // CHROME_BROWSER_UI_COCOA_L10N_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698