| Index: content/common/frame_messages.h
|
| diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
|
| index e2788736765fc15da99bc0f11a9a4d5508eda47f..5295c6f0d4a5aefa26ff208a4d378f3149078af0 100644
|
| --- a/content/common/frame_messages.h
|
| +++ b/content/common/frame_messages.h
|
| @@ -2,8 +2,10 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#ifndef CONTENT_COMMON_FRAME_MESSAGES_H_
|
| +#define CONTENT_COMMON_FRAME_MESSAGES_H_
|
| +
|
| // IPC messages for interacting with frames.
|
| -// Multiply-included message file, hence no include guard.
|
|
|
| #include <stddef.h>
|
| #include <stdint.h>
|
| @@ -72,8 +74,8 @@
|
| #endif
|
|
|
| // Singly-included section for type definitions.
|
| -#ifndef CONTENT_COMMON_FRAME_MESSAGES_H_
|
| -#define CONTENT_COMMON_FRAME_MESSAGES_H_
|
| +#ifndef INTERNAL_CONTENT_COMMON_FRAME_MESSAGES_H_
|
| +#define INTERNAL_CONTENT_COMMON_FRAME_MESSAGES_H_
|
|
|
| using FrameMsg_GetSerializedHtmlWithLocalLinks_UrlMap =
|
| std::map<GURL, base::FilePath>;
|
| @@ -83,7 +85,7 @@ using FrameMsg_GetSerializedHtmlWithLocalLinks_FrameRoutingIdMap =
|
| using FrameMsg_SerializeAsMHTML_FrameRoutingIdToContentIdMap =
|
| std::map<int, std::string>;
|
|
|
| -#endif // CONTENT_COMMON_FRAME_MESSAGES_H_
|
| +#endif // INTERNAL_CONTENT_COMMON_FRAME_MESSAGES_H_
|
|
|
| #undef IPC_MESSAGE_EXPORT
|
| #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
|
| @@ -1717,3 +1719,5 @@ IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder)
|
| // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
|
| // platform independent FrameHostMsg, then ifdefs for platform specific
|
| // FrameHostMsg.
|
| +
|
| +#endif // CONTENT_COMMON_FRAME_MESSAGES_H_
|
|
|