Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(337)

Side by Side Diff: content/common/view_messages.h

Issue 1339613002: Explicitly include MacScrollTypes.h in view_messages.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/common/DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/memory/shared_memory.h" 8 #include "base/memory/shared_memory.h"
9 #include "base/process/process.h" 9 #include "base/process/process.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 #include "ui/base/ui_base_types.h" 57 #include "ui/base/ui_base_types.h"
58 #include "ui/gfx/geometry/point.h" 58 #include "ui/gfx/geometry/point.h"
59 #include "ui/gfx/geometry/rect.h" 59 #include "ui/gfx/geometry/rect.h"
60 #include "ui/gfx/geometry/rect_f.h" 60 #include "ui/gfx/geometry/rect_f.h"
61 #include "ui/gfx/geometry/vector2d.h" 61 #include "ui/gfx/geometry/vector2d.h"
62 #include "ui/gfx/geometry/vector2d_f.h" 62 #include "ui/gfx/geometry/vector2d_f.h"
63 #include "ui/gfx/ipc/gfx_param_traits.h" 63 #include "ui/gfx/ipc/gfx_param_traits.h"
64 #include "ui/gfx/range/range.h" 64 #include "ui/gfx/range/range.h"
65 65
66 #if defined(OS_MACOSX) 66 #if defined(OS_MACOSX)
67 #include "third_party/WebKit/public/platform/mac/MacScrollTypes.h"
67 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" 68 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h"
68 #endif 69 #endif
69 70
70 #undef IPC_MESSAGE_EXPORT 71 #undef IPC_MESSAGE_EXPORT
71 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT 72 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
72 73
73 #define IPC_MESSAGE_START ViewMsgStart 74 #define IPC_MESSAGE_START ViewMsgStart
74 75
75 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebDeviceEmulationParams::ScreenPosition, 76 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebDeviceEmulationParams::ScreenPosition,
76 blink::WebDeviceEmulationParams::ScreenPositionLast) 77 blink::WebDeviceEmulationParams::ScreenPositionLast)
(...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after
1427 // Instructs the browser to start plugin IME. 1428 // Instructs the browser to start plugin IME.
1428 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) 1429 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme)
1429 1430
1430 // Receives content of a web page as plain text. 1431 // Receives content of a web page as plain text.
1431 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string); 1432 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string);
1432 #endif 1433 #endif
1433 1434
1434 // Adding a new message? Stick to the sort order above: first platform 1435 // Adding a new message? Stick to the sort order above: first platform
1435 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 1436 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
1436 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 1437 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW
« no previous file with comments | « content/common/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698