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

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

Issue 713933002: Create Source/modules/accessibility/ and move most of core/accessibility/* into it (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 1 month 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 | « Source/modules/modules.gypi ('k') | Source/web/ChromeClientImpl.cpp » ('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 16 matching lines...) Expand all
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 // Use this file to assert that various public API enum values continue 31 // Use this file to assert that various public API enum values continue
32 // matching blink defined enum values. 32 // matching blink defined enum values.
33 33
34 #include "config.h" 34 #include "config.h"
35 35
36 #include "bindings/core/v8/SerializedScriptValue.h" 36 #include "bindings/core/v8/SerializedScriptValue.h"
37 #include "core/accessibility/AXObject.h"
38 #include "core/accessibility/AXObjectCache.h" 37 #include "core/accessibility/AXObjectCache.h"
39 #include "core/dom/DocumentMarker.h" 38 #include "core/dom/DocumentMarker.h"
40 #include "core/dom/ExceptionCode.h" 39 #include "core/dom/ExceptionCode.h"
41 #include "core/dom/IconURL.h" 40 #include "core/dom/IconURL.h"
42 #include "core/editing/TextAffinity.h" 41 #include "core/editing/TextAffinity.h"
43 #include "core/fileapi/FileError.h" 42 #include "core/fileapi/FileError.h"
44 #include "core/frame/Settings.h" 43 #include "core/frame/Settings.h"
45 #include "core/frame/csp/ContentSecurityPolicy.h" 44 #include "core/frame/csp/ContentSecurityPolicy.h"
46 #include "core/html/HTMLFormElement.h" 45 #include "core/html/HTMLFormElement.h"
47 #include "core/html/HTMLInputElement.h" 46 #include "core/html/HTMLInputElement.h"
48 #include "core/html/HTMLMediaElement.h" 47 #include "core/html/HTMLMediaElement.h"
49 #include "core/html/shadow/TextControlInnerElements.h" 48 #include "core/html/shadow/TextControlInnerElements.h"
50 #include "core/loader/FrameLoaderTypes.h" 49 #include "core/loader/FrameLoaderTypes.h"
51 #include "core/loader/NavigationPolicy.h" 50 #include "core/loader/NavigationPolicy.h"
52 #include "core/loader/appcache/ApplicationCacheHost.h" 51 #include "core/loader/appcache/ApplicationCacheHost.h"
53 #include "core/page/InjectedStyleSheets.h" 52 #include "core/page/InjectedStyleSheets.h"
54 #include "core/page/PageVisibilityState.h" 53 #include "core/page/PageVisibilityState.h"
55 #include "core/rendering/compositing/CompositedSelectionBound.h" 54 #include "core/rendering/compositing/CompositedSelectionBound.h"
56 #include "core/rendering/style/RenderStyleConstants.h" 55 #include "core/rendering/style/RenderStyleConstants.h"
56 #include "modules/accessibility/AXObject.h"
57 #include "modules/geolocation/GeolocationError.h" 57 #include "modules/geolocation/GeolocationError.h"
58 #include "modules/geolocation/GeolocationPosition.h" 58 #include "modules/geolocation/GeolocationPosition.h"
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/notifications/NotificationClient.h" 64 #include "modules/notifications/NotificationClient.h"
65 #include "modules/quota/DeprecatedStorageQuota.h" 65 #include "modules/quota/DeprecatedStorageQuota.h"
66 #include "modules/speech/SpeechRecognitionError.h" 66 #include "modules/speech/SpeechRecognitionError.h"
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeNone, PointerTypeNone); 643 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeNone, PointerTypeNone);
644 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeCoarse, PointerTypeCoarse); 644 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeCoarse, PointerTypeCoarse);
645 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeFine, PointerTypeFine); 645 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeFine, PointerTypeFine);
646 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeNone, HoverTypeNone); 646 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeNone, HoverTypeNone);
647 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeOnDemand, HoverTypeOnDemand); 647 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeOnDemand, HoverTypeOnDemand);
648 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeHover, HoverTypeHover); 648 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeHover, HoverTypeHover);
649 649
650 COMPILE_ASSERT_MATCHING_UINT64(kSerializedScriptValueVersion, SerializedScriptVa lue::wireFormatVersion); 650 COMPILE_ASSERT_MATCHING_UINT64(kSerializedScriptValueVersion, SerializedScriptVa lue::wireFormatVersion);
651 651
652 } // namespace blink 652 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698