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

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

Issue 2876453003: Move enums from AXObjectImpl to AXObject (Closed)
Patch Set: Rebase Created 3 years, 7 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 22 matching lines...) Expand all
33 33
34 #include "bindings/core/v8/serialization/SerializedScriptValue.h" 34 #include "bindings/core/v8/serialization/SerializedScriptValue.h"
35 #include "core/dom/AXObjectCache.h" 35 #include "core/dom/AXObjectCache.h"
36 #include "core/dom/IconURL.h" 36 #include "core/dom/IconURL.h"
37 #include "core/editing/SelectionType.h" 37 #include "core/editing/SelectionType.h"
38 #include "core/editing/TextAffinity.h" 38 #include "core/editing/TextAffinity.h"
39 #include "core/editing/markers/DocumentMarker.h" 39 #include "core/editing/markers/DocumentMarker.h"
40 #if OS(MACOSX) 40 #if OS(MACOSX)
41 #include "core/events/WheelEvent.h" 41 #include "core/events/WheelEvent.h"
42 #endif 42 #endif
43 #include "core/dom/AXObject.h"
43 #include "core/fileapi/FileError.h" 44 #include "core/fileapi/FileError.h"
44 #include "core/frame/Frame.h" 45 #include "core/frame/Frame.h"
45 #include "core/frame/FrameTypes.h" 46 #include "core/frame/FrameTypes.h"
46 #include "core/frame/LocalFrameClient.h" 47 #include "core/frame/LocalFrameClient.h"
47 #include "core/frame/Settings.h" 48 #include "core/frame/Settings.h"
48 #include "core/frame/csp/CSPSource.h" 49 #include "core/frame/csp/CSPSource.h"
49 #include "core/frame/csp/ContentSecurityPolicy.h" 50 #include "core/frame/csp/ContentSecurityPolicy.h"
50 #include "core/html/HTMLInputElement.h" 51 #include "core/html/HTMLInputElement.h"
51 #include "core/html/HTMLMediaElement.h" 52 #include "core/html/HTMLMediaElement.h"
52 #include "core/html/forms/TextControlInnerElements.h" 53 #include "core/html/forms/TextControlInnerElements.h"
53 #include "core/html/media/AutoplayPolicy.h" 54 #include "core/html/media/AutoplayPolicy.h"
54 #include "core/layout/compositing/CompositedSelectionBound.h" 55 #include "core/layout/compositing/CompositedSelectionBound.h"
55 #include "core/loader/FrameLoaderTypes.h" 56 #include "core/loader/FrameLoaderTypes.h"
56 #include "core/loader/NavigationPolicy.h" 57 #include "core/loader/NavigationPolicy.h"
57 #include "core/loader/appcache/ApplicationCacheHost.h" 58 #include "core/loader/appcache/ApplicationCacheHost.h"
58 #include "core/page/PageVisibilityState.h" 59 #include "core/page/PageVisibilityState.h"
59 #include "core/style/ComputedStyleConstants.h" 60 #include "core/style/ComputedStyleConstants.h"
60 #include "modules/accessibility/AXObjectImpl.h"
61 #include "modules/indexeddb/IDBKey.h" 61 #include "modules/indexeddb/IDBKey.h"
62 #include "modules/indexeddb/IDBKeyPath.h" 62 #include "modules/indexeddb/IDBKeyPath.h"
63 #include "modules/indexeddb/IDBMetadata.h" 63 #include "modules/indexeddb/IDBMetadata.h"
64 #include "modules/indexeddb/IndexedDB.h" 64 #include "modules/indexeddb/IndexedDB.h"
65 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" 65 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h"
66 #include "modules/quota/DeprecatedStorageQuota.h" 66 #include "modules/quota/DeprecatedStorageQuota.h"
67 #include "modules/speech/SpeechRecognitionError.h" 67 #include "modules/speech/SpeechRecognitionError.h"
68 #include "platform/Cursor.h" 68 #include "platform/Cursor.h"
69 #include "platform/FileMetadata.h" 69 #include "platform/FileMetadata.h"
70 #include "platform/FileSystemType.h" 70 #include "platform/FileSystemType.h"
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after
886 886
887 // This ensures that the version number published in 887 // This ensures that the version number published in
888 // WebSerializedScriptValueVersion.h matches the serializer's understanding. 888 // WebSerializedScriptValueVersion.h matches the serializer's understanding.
889 // TODO(jbroman): Fix this to also account for the V8-side version. See 889 // TODO(jbroman): Fix this to also account for the V8-side version. See
890 // https://crbug.com/704293. 890 // https://crbug.com/704293.
891 static_assert(kSerializedScriptValueVersion == 891 static_assert(kSerializedScriptValueVersion ==
892 SerializedScriptValue::kWireFormatVersion, 892 SerializedScriptValue::kWireFormatVersion,
893 "Update WebSerializedScriptValueVersion.h."); 893 "Update WebSerializedScriptValueVersion.h.");
894 894
895 } // namespace blink 895 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/accessibility/AXObjectImpl.h ('k') | third_party/WebKit/Source/web/WebDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698