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

Side by Side Diff: Source/WebKit/chromium/src/AssertMatchingEnums.cpp

Issue 14190004: Absolutify paths to loader/*. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: hmm Created 7 years, 8 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 | Annotate | Revision Log
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 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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 WebKit API enum values continue 31 // Use this file to assert that various WebKit API enum values continue
32 // matching WebCore defined enum values. 32 // matching WebCore defined enum values.
33 33
34 #include "config.h" 34 #include "config.h"
35 35
36 #include "ApplicationCacheHost.h"
37 #include "ContentSecurityPolicy.h" 36 #include "ContentSecurityPolicy.h"
38 #include "DocumentMarker.h" 37 #include "DocumentMarker.h"
39 #include "EditorInsertAction.h" 38 #include "EditorInsertAction.h"
40 #include "ExceptionCode.h" 39 #include "ExceptionCode.h"
41 #include "FileError.h" 40 #include "FileError.h"
42 #include "FileSystemType.h" 41 #include "FileSystemType.h"
43 #include "GeolocationError.h" 42 #include "GeolocationError.h"
44 #include "GeolocationPosition.h" 43 #include "GeolocationPosition.h"
45 #include "HTMLFormElement.h" 44 #include "HTMLFormElement.h"
46 #include "HTMLInputElement.h" 45 #include "HTMLInputElement.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 #include "WebSettings.h" 88 #include "WebSettings.h"
90 #include "WebSpeechRecognizerClient.h" 89 #include "WebSpeechRecognizerClient.h"
91 #include "WebStorageQuotaError.h" 90 #include "WebStorageQuotaError.h"
92 #include "WebStorageQuotaType.h" 91 #include "WebStorageQuotaType.h"
93 #include "WebTextAffinity.h" 92 #include "WebTextAffinity.h"
94 #include "WebTextCheckingResult.h" 93 #include "WebTextCheckingResult.h"
95 #include "WebTextCheckingType.h" 94 #include "WebTextCheckingType.h"
96 #include "WebView.h" 95 #include "WebView.h"
97 #include "core/accessibility/AXObjectCache.h" 96 #include "core/accessibility/AXObjectCache.h"
98 #include "core/accessibility/AccessibilityObject.h" 97 #include "core/accessibility/AccessibilityObject.h"
98 #include "core/loader/appcache/ApplicationCacheHost.h"
99 #include "core/platform/Cursor.h" 99 #include "core/platform/Cursor.h"
100 #include "core/platform/FileMetadata.h" 100 #include "core/platform/FileMetadata.h"
101 #include "core/platform/ReferrerPolicy.h" 101 #include "core/platform/ReferrerPolicy.h"
102 #include "core/platform/graphics/FontDescription.h" 102 #include "core/platform/graphics/FontDescription.h"
103 #include "core/platform/graphics/FontSmoothingMode.h" 103 #include "core/platform/graphics/FontSmoothingMode.h"
104 #include "core/platform/graphics/MediaPlayer.h" 104 #include "core/platform/graphics/MediaPlayer.h"
105 #include "core/platform/graphics/MediaSourcePrivate.h" 105 #include "core/platform/graphics/MediaSourcePrivate.h"
106 #include "core/platform/graphics/filters/FilterOperation.h" 106 #include "core/platform/graphics/filters/FilterOperation.h"
107 #include "core/platform/mediastream/MediaStreamSource.h" 107 #include "core/platform/mediastream/MediaStreamSource.h"
108 #include "core/platform/mediastream/RTCDataChannelHandlerClient.h" 108 #include "core/platform/mediastream/RTCDataChannelHandlerClient.h"
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityVeryLow, ResourceLoadPriorit yVeryLow); 610 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityVeryLow, ResourceLoadPriorit yVeryLow);
611 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityLow, ResourceLoadPriorityLow ); 611 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityLow, ResourceLoadPriorityLow );
612 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityMedium, ResourceLoadPriority Medium); 612 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityMedium, ResourceLoadPriority Medium);
613 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityHigh, ResourceLoadPriorityHi gh); 613 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityHigh, ResourceLoadPriorityHi gh);
614 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityVeryHigh, ResourceLoadPriori tyVeryHigh); 614 COMPILE_ASSERT_MATCHING_ENUM(WebURLRequest::PriorityVeryHigh, ResourceLoadPriori tyVeryHigh);
615 615
616 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelDebug, DebugMessageLevel); 616 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelDebug, DebugMessageLevel);
617 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelLog, LogMessageLevel); 617 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelLog, LogMessageLevel);
618 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelWarning, WarningMessageLeve l); 618 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelWarning, WarningMessageLeve l);
619 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelError, ErrorMessageLevel); 619 COMPILE_ASSERT_MATCHING_ENUM(WebConsoleMessage::LevelError, ErrorMessageLevel);
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/ApplicationCacheHostInternal.h ('k') | Source/WebKit/chromium/src/TextFieldDecoratorImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698