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

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

Issue 2746113002: platform/loader: move network/Resource* to loader/fetch (Closed)
Patch Set: git rebase master Created 3 years, 9 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 #include "modules/indexeddb/IDBMetadata.h" 62 #include "modules/indexeddb/IDBMetadata.h"
63 #include "modules/indexeddb/IndexedDB.h" 63 #include "modules/indexeddb/IndexedDB.h"
64 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.h" 64 #include "modules/navigatorcontentutils/NavigatorContentUtilsClient.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"
67 #include "platform/Cursor.h" 67 #include "platform/Cursor.h"
68 #include "platform/FileMetadata.h" 68 #include "platform/FileMetadata.h"
69 #include "platform/FileSystemType.h" 69 #include "platform/FileSystemType.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/loader/fetch/ResourceLoadPriority.h"
73 #include "platform/loader/fetch/ResourceResponse.h"
72 #include "platform/mediastream/MediaStreamSource.h" 74 #include "platform/mediastream/MediaStreamSource.h"
73 #include "platform/network/ContentSecurityPolicyParsers.h" 75 #include "platform/network/ContentSecurityPolicyParsers.h"
74 #include "platform/network/ResourceLoadPriority.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"
80 #include "platform/weborigin/SchemeRegistry.h" 80 #include "platform/weborigin/SchemeRegistry.h"
81 #include "public/platform/WebApplicationCacheHost.h" 81 #include "public/platform/WebApplicationCacheHost.h"
82 #include "public/platform/WebClipboard.h" 82 #include "public/platform/WebClipboard.h"
83 #include "public/platform/WebContentSecurityPolicy.h" 83 #include "public/platform/WebContentSecurityPolicy.h"
84 #include "public/platform/WebContentSecurityPolicyStruct.h" 84 #include "public/platform/WebContentSecurityPolicyStruct.h"
85 #include "public/platform/WebCursorInfo.h" 85 #include "public/platform/WebCursorInfo.h"
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 ProgressBarCompletion::DOMContentLoaded); 868 ProgressBarCompletion::DOMContentLoaded);
869 STATIC_ASSERT_ENUM( 869 STATIC_ASSERT_ENUM(
870 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames, 870 WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames,
871 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames); 871 ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames);
872 872
873 static_assert(kSerializedScriptValueVersion == 873 static_assert(kSerializedScriptValueVersion ==
874 SerializedScriptValue::wireFormatVersion, 874 SerializedScriptValue::wireFormatVersion,
875 ""); 875 "");
876 876
877 } // namespace blink 877 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698