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

Side by Side Diff: sky/engine/web/AssertMatchingEnums.cpp

Issue 860593003: Move WebInputEvent from public/web to public/platform (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Build fix Created 5 years, 11 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 | « sky/engine/public/web/WebTouchPoint.h ('k') | sky/engine/web/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "sky/engine/platform/fonts/FontSmoothingMode.h" 50 #include "sky/engine/platform/fonts/FontSmoothingMode.h"
51 #include "sky/engine/platform/graphics/filters/FilterOperation.h" 51 #include "sky/engine/platform/graphics/filters/FilterOperation.h"
52 #include "sky/engine/platform/network/ResourceLoadPriority.h" 52 #include "sky/engine/platform/network/ResourceLoadPriority.h"
53 #include "sky/engine/platform/network/ResourceResponse.h" 53 #include "sky/engine/platform/network/ResourceResponse.h"
54 #include "sky/engine/platform/scroll/ScrollTypes.h" 54 #include "sky/engine/platform/scroll/ScrollTypes.h"
55 #include "sky/engine/platform/text/TextChecking.h" 55 #include "sky/engine/platform/text/TextChecking.h"
56 #include "sky/engine/platform/text/TextDecoration.h" 56 #include "sky/engine/platform/text/TextDecoration.h"
57 #include "sky/engine/platform/weborigin/ReferrerPolicy.h" 57 #include "sky/engine/platform/weborigin/ReferrerPolicy.h"
58 #include "sky/engine/public/platform/WebClipboard.h" 58 #include "sky/engine/public/platform/WebClipboard.h"
59 #include "sky/engine/public/platform/WebCursorInfo.h" 59 #include "sky/engine/public/platform/WebCursorInfo.h"
60 #include "sky/engine/public/platform/WebInputEvent.h"
60 #include "sky/engine/public/platform/WebReferrerPolicy.h" 61 #include "sky/engine/public/platform/WebReferrerPolicy.h"
61 #include "sky/engine/public/platform/WebURLRequest.h" 62 #include "sky/engine/public/platform/WebURLRequest.h"
62 #include "sky/engine/public/platform/WebURLResponse.h" 63 #include "sky/engine/public/platform/WebURLResponse.h"
63 #include "sky/engine/public/web/WebConsoleMessage.h" 64 #include "sky/engine/public/web/WebConsoleMessage.h"
64 #include "sky/engine/public/web/WebFontDescription.h" 65 #include "sky/engine/public/web/WebFontDescription.h"
65 #include "sky/engine/public/web/WebInputEvent.h"
66 #include "sky/engine/public/web/WebNavigationPolicy.h" 66 #include "sky/engine/public/web/WebNavigationPolicy.h"
67 #include "sky/engine/public/web/WebNavigatorContentUtilsClient.h" 67 #include "sky/engine/public/web/WebNavigatorContentUtilsClient.h"
68 #include "sky/engine/public/web/WebNode.h" 68 #include "sky/engine/public/web/WebNode.h"
69 #include "sky/engine/public/web/WebSettings.h" 69 #include "sky/engine/public/web/WebSettings.h"
70 #include "sky/engine/public/web/WebTextAffinity.h" 70 #include "sky/engine/public/web/WebTextAffinity.h"
71 #include "sky/engine/public/web/WebTextCheckingResult.h" 71 #include "sky/engine/public/web/WebTextCheckingResult.h"
72 #include "sky/engine/public/web/WebTextCheckingType.h" 72 #include "sky/engine/public/web/WebTextCheckingType.h"
73 #include "sky/engine/public/web/WebTextDecorationType.h" 73 #include "sky/engine/public/web/WebTextDecorationType.h"
74 #include "sky/engine/public/web/WebTouchAction.h" 74 #include "sky/engine/public/web/WebTouchAction.h"
75 #include "sky/engine/public/web/WebView.h" 75 #include "sky/engine/public/web/WebView.h"
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheOptionsCode, V8CacheOptionsCode ); 225 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::V8CacheOptionsCode, V8CacheOptionsCode );
226 226
227 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeNone, PointerTypeNone); 227 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeNone, PointerTypeNone);
228 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeCoarse, PointerTypeCoarse); 228 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeCoarse, PointerTypeCoarse);
229 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeFine, PointerTypeFine); 229 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeFine, PointerTypeFine);
230 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeNone, HoverTypeNone); 230 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeNone, HoverTypeNone);
231 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeOnDemand, HoverTypeOnDemand); 231 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeOnDemand, HoverTypeOnDemand);
232 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeHover, HoverTypeHover); 232 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeHover, HoverTypeHover);
233 233
234 } // namespace blink 234 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/public/web/WebTouchPoint.h ('k') | sky/engine/web/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698