diff options
author | Steve Block <steveblock@google.com> | 2011-06-08 04:19:03 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-06-08 04:19:03 -0700 |
commit | e710a8cbca96899e08ee0d427bcd8968cbcec9f0 (patch) | |
tree | 0665199d498b07c7f784cfc762373a7b66abb6cc /Source/WebKit/android/wds | |
parent | 2281d6c3134384e2ba143f406de90be46d8e887f (diff) | |
parent | 3d1195ca6a380e5af16e3a505a007369cf18a4db (diff) | |
download | external_webkit-e710a8cbca96899e08ee0d427bcd8968cbcec9f0.zip external_webkit-e710a8cbca96899e08ee0d427bcd8968cbcec9f0.tar.gz external_webkit-e710a8cbca96899e08ee0d427bcd8968cbcec9f0.tar.bz2 |
Merge "Fix some include guards in Android files"
Diffstat (limited to 'Source/WebKit/android/wds')
-rw-r--r-- | Source/WebKit/android/wds/Command.h | 4 | ||||
-rw-r--r-- | Source/WebKit/android/wds/Connection.h | 4 | ||||
-rw-r--r-- | Source/WebKit/android/wds/DebugServer.h | 4 | ||||
-rw-r--r-- | Source/WebKit/android/wds/client/AdbConnection.h | 4 | ||||
-rw-r--r-- | Source/WebKit/android/wds/client/ClientUtils.h | 4 | ||||
-rw-r--r-- | Source/WebKit/android/wds/client/Device.h | 4 | ||||
-rw-r--r-- | Source/WebKit/android/wds/client/DeviceList.h | 4 |
7 files changed, 14 insertions, 14 deletions
diff --git a/Source/WebKit/android/wds/Command.h b/Source/WebKit/android/wds/Command.h index 90861d4..f70559f 100644 --- a/Source/WebKit/android/wds/Command.h +++ b/Source/WebKit/android/wds/Command.h @@ -23,8 +23,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef WDS_COMMAND_H -#define WDS_COMMAND_H +#ifndef Command_h +#define Command_h #include "wtf/MainThread.h" #include "wtf/Vector.h" diff --git a/Source/WebKit/android/wds/Connection.h b/Source/WebKit/android/wds/Connection.h index d67179e..2519337 100644 --- a/Source/WebKit/android/wds/Connection.h +++ b/Source/WebKit/android/wds/Connection.h @@ -23,8 +23,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef WDS_CONNECTION_H -#define WDS_CONNECTION_H +#ifndef Connection_h +#define Connection_h #include <unistd.h> #include <sys/socket.h> diff --git a/Source/WebKit/android/wds/DebugServer.h b/Source/WebKit/android/wds/DebugServer.h index 3d7a539..693d11a 100644 --- a/Source/WebKit/android/wds/DebugServer.h +++ b/Source/WebKit/android/wds/DebugServer.h @@ -23,8 +23,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef DEBUGSERVER_H -#define DEBUGSERVER_H +#ifndef DebugServer_h +#define DebugServer_h // Turn on the wds feature in webkit #define ENABLE_WDS 0 diff --git a/Source/WebKit/android/wds/client/AdbConnection.h b/Source/WebKit/android/wds/client/AdbConnection.h index 58bad67..93e5cda 100644 --- a/Source/WebKit/android/wds/client/AdbConnection.h +++ b/Source/WebKit/android/wds/client/AdbConnection.h @@ -23,8 +23,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef WDS_ADB_CONNECTION_H -#define WDS_ADB_CONNECTION_H +#ifndef AdbConnection_h +#define AdbConnection_h #include "DeviceList.h" diff --git a/Source/WebKit/android/wds/client/ClientUtils.h b/Source/WebKit/android/wds/client/ClientUtils.h index 5da1624..7d0db30 100644 --- a/Source/WebKit/android/wds/client/ClientUtils.h +++ b/Source/WebKit/android/wds/client/ClientUtils.h @@ -23,8 +23,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef WDS_CLIENT_UTILS_H -#define WDS_CLIENT_UTILS_H +#ifndef ClientUtils_h +#define ClientUtils_h #include <arpa/inet.h> diff --git a/Source/WebKit/android/wds/client/Device.h b/Source/WebKit/android/wds/client/Device.h index 39d4b12..101e2c3 100644 --- a/Source/WebKit/android/wds/client/Device.h +++ b/Source/WebKit/android/wds/client/Device.h @@ -23,8 +23,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef WDS_DEVICE_H -#define WDS_DEVICE_H +#ifndef Device_h +#define Device_h #include <stdlib.h> diff --git a/Source/WebKit/android/wds/client/DeviceList.h b/Source/WebKit/android/wds/client/DeviceList.h index 45bfb87..6e2691e 100644 --- a/Source/WebKit/android/wds/client/DeviceList.h +++ b/Source/WebKit/android/wds/client/DeviceList.h @@ -23,8 +23,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef WDS_DEVICE_LIST_H -#define WDS_DEVICE_LIST_H +#ifndef DeviceList_h +#define DeviceList_h #include <utils/Vector.h> |