OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ | 5 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ |
6 #define CHROME_COMMON_RENDER_MESSAGES_H_ | 6 #define CHROME_COMMON_RENDER_MESSAGES_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 #include <map> | 10 #include <map> |
(...skipping 22 matching lines...) Expand all Loading... |
33 #include "webkit/glue/resource_loader_bridge.h" | 33 #include "webkit/glue/resource_loader_bridge.h" |
34 #include "webkit/glue/webaccessibility.h" | 34 #include "webkit/glue/webaccessibility.h" |
35 #include "webkit/glue/webappcachecontext.h" | 35 #include "webkit/glue/webappcachecontext.h" |
36 #include "webkit/glue/webdropdata.h" | 36 #include "webkit/glue/webdropdata.h" |
37 #include "webkit/glue/webplugin.h" | 37 #include "webkit/glue/webplugin.h" |
38 #include "webkit/glue/webplugininfo.h" | 38 #include "webkit/glue/webplugininfo.h" |
39 #include "webkit/glue/webpreferences.h" | 39 #include "webkit/glue/webpreferences.h" |
40 #include "webkit/glue/webview_delegate.h" | 40 #include "webkit/glue/webview_delegate.h" |
41 | 41 |
42 #if defined(OS_POSIX) | 42 #if defined(OS_POSIX) |
43 #include "skia/include/SkBitmap.h" | 43 #include "third_party/skia/include/core/SkBitmap.h" |
44 #endif | 44 #endif |
45 | 45 |
46 namespace base { | 46 namespace base { |
47 class Time; | 47 class Time; |
48 } | 48 } |
49 | 49 |
50 // Parameters structure for ViewMsg_Navigate, which has too many data | 50 // Parameters structure for ViewMsg_Navigate, which has too many data |
51 // parameters to be reasonably put in a predefined IPC message. | 51 // parameters to be reasonably put in a predefined IPC message. |
52 struct ViewMsg_Navigate_Params { | 52 struct ViewMsg_Navigate_Params { |
53 // The page_id for this navigation, or -1 if it is a new navigation. Back, | 53 // The page_id for this navigation, or -1 if it is a new navigation. Back, |
(...skipping 1818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1872 } | 1872 } |
1873 }; | 1873 }; |
1874 | 1874 |
1875 } // namespace IPC | 1875 } // namespace IPC |
1876 | 1876 |
1877 | 1877 |
1878 #define MESSAGES_INTERNAL_FILE "chrome/common/render_messages_internal.h" | 1878 #define MESSAGES_INTERNAL_FILE "chrome/common/render_messages_internal.h" |
1879 #include "chrome/common/ipc_message_macros.h" | 1879 #include "chrome/common/ipc_message_macros.h" |
1880 | 1880 |
1881 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ | 1881 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ |
OLD | NEW |