diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-26 23:08:24 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-26 23:08:24 +0000 |
commit | 32b76eff6f630b9bcc0fc3f3bad826f3d1217dda (patch) | |
tree | a5687726e4f145c715c73cbbff23e88ac2192eb9 /app/menus | |
parent | 7cf4d5505378a983947d8c989841f1f378f19cde (diff) | |
download | chromium_src-32b76eff6f630b9bcc0fc3f3bad826f3d1217dda.zip chromium_src-32b76eff6f630b9bcc0fc3f3bad826f3d1217dda.tar.gz chromium_src-32b76eff6f630b9bcc0fc3f3bad826f3d1217dda.tar.bz2 |
`#pragma once` for app, base, chrome, gfx, ipc, net, skia, views
BUG=50273
TEST=everything still builds, build is 10% faster on windows, same speed on mac/linux
TBR: erg
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53716 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/menus')
-rw-r--r-- | app/menus/accelerator.h | 1 | ||||
-rw-r--r-- | app/menus/accelerator_cocoa.h | 1 | ||||
-rw-r--r-- | app/menus/accelerator_gtk.h | 1 | ||||
-rw-r--r-- | app/menus/button_menu_item_model.h | 1 | ||||
-rw-r--r-- | app/menus/menu_model.h | 1 | ||||
-rw-r--r-- | app/menus/simple_menu_model.h | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/app/menus/accelerator.h b/app/menus/accelerator.h index 0cb6279..def6cf2 100644 --- a/app/menus/accelerator.h +++ b/app/menus/accelerator.h @@ -4,6 +4,7 @@ #ifndef APP_MENUS_ACCELERATOR_H_ #define APP_MENUS_ACCELERATOR_H_ +#pragma once #include "base/keyboard_codes.h" diff --git a/app/menus/accelerator_cocoa.h b/app/menus/accelerator_cocoa.h index 1866b4a..3eb879f 100644 --- a/app/menus/accelerator_cocoa.h +++ b/app/menus/accelerator_cocoa.h @@ -4,6 +4,7 @@ #ifndef APP_MENUS_ACCELERATOR_COCOA_H_ #define APP_MENUS_ACCELERATOR_COCOA_H_ +#pragma once #include <Foundation/Foundation.h> diff --git a/app/menus/accelerator_gtk.h b/app/menus/accelerator_gtk.h index 90c205f..86c83f7 100644 --- a/app/menus/accelerator_gtk.h +++ b/app/menus/accelerator_gtk.h @@ -4,6 +4,7 @@ #ifndef APP_MENUS_ACCELERATOR_GTK_H_ #define APP_MENUS_ACCELERATOR_GTK_H_ +#pragma once #include <gdk/gdk.h> diff --git a/app/menus/button_menu_item_model.h b/app/menus/button_menu_item_model.h index ec30d0a..29a8b7c 100644 --- a/app/menus/button_menu_item_model.h +++ b/app/menus/button_menu_item_model.h @@ -4,6 +4,7 @@ #ifndef APP_MENUS_BUTTON_MENU_ITEM_MODEL_H_ #define APP_MENUS_BUTTON_MENU_ITEM_MODEL_H_ +#pragma once #include <vector> diff --git a/app/menus/menu_model.h b/app/menus/menu_model.h index f14c8b5..c91efc9 100644 --- a/app/menus/menu_model.h +++ b/app/menus/menu_model.h @@ -4,6 +4,7 @@ #ifndef APP_MENUS_MENU_MODEL_H_ #define APP_MENUS_MENU_MODEL_H_ +#pragma once #include "base/scoped_ptr.h" #include "base/string16.h" diff --git a/app/menus/simple_menu_model.h b/app/menus/simple_menu_model.h index d57e924..2e732a9 100644 --- a/app/menus/simple_menu_model.h +++ b/app/menus/simple_menu_model.h @@ -4,6 +4,7 @@ #ifndef APP_MENUS_SIMPLE_MENU_MODEL_H_ #define APP_MENUS_SIMPLE_MENU_MODEL_H_ +#pragma once #include <vector> |