diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-07 19:49:35 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-07 19:49:35 +0000 |
commit | e32abeaae7a8b5eaa3c6dc5b9076dc13ff0a10ad (patch) | |
tree | 40ccce9a2f97da558f40a9d921d77d9957a83d7d /ui | |
parent | 2b7c3f6842136ff9c04a6c79a2907ec8d6f08ee2 (diff) | |
download | chromium_src-e32abeaae7a8b5eaa3c6dc5b9076dc13ff0a10ad.zip chromium_src-e32abeaae7a8b5eaa3c6dc5b9076dc13ff0a10ad.tar.gz chromium_src-e32abeaae7a8b5eaa3c6dc5b9076dc13ff0a10ad.tar.bz2 |
ui/oak: Add missing header include guards to oak_pretty_print.h
R=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10375030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135702 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui')
-rw-r--r-- | ui/oak/oak_pretty_print.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/oak/oak_pretty_print.h b/ui/oak/oak_pretty_print.h index 6d753bc..9aca3bb 100644 --- a/ui/oak/oak_pretty_print.h +++ b/ui/oak/oak_pretty_print.h @@ -2,6 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#ifndef UI_OAK_OAK_PRETTY_PRINT_H_ +#define UI_OAK_OAK_PRETTY_PRINT_H_ +#pragma once + #include "base/string16.h" namespace gfx { @@ -23,3 +27,5 @@ string16 PropertyWithInsets(const std::string& prefix, } // namespace internal } // namespace oak + +#endif // UI_OAK_OAK_PRETTY_PRINT_H_ |