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

Side by Side Diff: third_party/WebKit/Source/web/AssertMatchingEnums.cpp

Issue 2650403006: Remove PlatformMouseEvent and use WebMouseEvent instead (Closed)
Patch Set: Created 3 years, 10 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
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 #include "modules/indexeddb/IDBKey.h" 59 #include "modules/indexeddb/IDBKey.h"
60 #include "modules/indexeddb/IDBKeyPath.h" 60 #include "modules/indexeddb/IDBKeyPath.h"
61 #include "modules/indexeddb/IDBMetadata.h" 61 #include "modules/indexeddb/IDBMetadata.h"
62 #include "modules/indexeddb/IndexedDB.h" 62 #include "modules/indexeddb/IndexedDB.h"
63 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" 63 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h"
64 #include "modules/quota/DeprecatedStorageQuota.h" 64 #include "modules/quota/DeprecatedStorageQuota.h"
65 #include "modules/speech/SpeechRecognitionError.h" 65 #include "modules/speech/SpeechRecognitionError.h"
66 #include "platform/Cursor.h" 66 #include "platform/Cursor.h"
67 #include "platform/FileMetadata.h" 67 #include "platform/FileMetadata.h"
68 #include "platform/FileSystemType.h" 68 #include "platform/FileSystemType.h"
69 #include "platform/PlatformMouseEvent.h" 69 #include "platform/PlatformEvent.h"
70 #include "platform/fonts/FontDescription.h" 70 #include "platform/fonts/FontDescription.h"
71 #include "platform/fonts/FontSmoothingMode.h" 71 #include "platform/fonts/FontSmoothingMode.h"
72 #include "platform/mediastream/MediaStreamSource.h" 72 #include "platform/mediastream/MediaStreamSource.h"
73 #include "platform/network/ContentSecurityPolicyParsers.h" 73 #include "platform/network/ContentSecurityPolicyParsers.h"
74 #include "platform/network/ResourceLoadPriority.h" 74 #include "platform/network/ResourceLoadPriority.h"
75 #include "platform/network/ResourceResponse.h" 75 #include "platform/network/ResourceResponse.h"
76 #include "platform/scroll/ScrollTypes.h" 76 #include "platform/scroll/ScrollTypes.h"
77 #include "platform/text/TextChecking.h" 77 #include "platform/text/TextChecking.h"
78 #include "platform/text/TextDecoration.h" 78 #include "platform/text/TextDecoration.h"
79 #include "platform/weborigin/ReferrerPolicy.h" 79 #include "platform/weborigin/ReferrerPolicy.h"
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
891 ProgressBarCompletion::DOMContentLoaded); 891 ProgressBarCompletion::DOMContentLoaded);
892 STATIC_ASSERT_ENUM( 892 STATIC_ASSERT_ENUM(
893 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames, 893 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames,
894 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames); 894 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames);
895 895
896 static_assert(kSerializedScriptValueVersion == 896 static_assert(kSerializedScriptValueVersion ==
897 SerializedScriptValue::wireFormatVersion, 897 SerializedScriptValue::wireFormatVersion,
898 ""); 898 "");
899 899
900 } // namespace blink 900 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698