Use Google-style header guards everywhere

This commit is contained in:
Adam Roben 2013-03-13 15:42:16 -04:00
parent e451d92121
commit 65dd011fa3
6 changed files with 18 additions and 18 deletions

View file

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE-CHROMIUM file.
#ifndef __brightray__main_delegate__
#define __brightray__main_delegate__
#ifndef BRIGHTRAY_COMMON_MAIN_DELEGATE_H_
#define BRIGHTRAY_COMMON_MAIN_DELEGATE_H_
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
@ -28,4 +28,4 @@ private:
};
}
#endif /* defined(__brightray__main_delegate__) */
#endif