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

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

Issue 2712343003: Rename FrameLoaderClient* to LocalFrameClient* in web/ (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/BUILD.gn » ('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 25 matching lines...) Expand all
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/fileapi/FileError.h" 43 #include "core/fileapi/FileError.h"
44 #include "core/frame/Frame.h" 44 #include "core/frame/Frame.h"
45 #include "core/frame/FrameTypes.h" 45 #include "core/frame/FrameTypes.h"
46 #include "core/frame/LocalFrameClient.h"
46 #include "core/frame/Settings.h" 47 #include "core/frame/Settings.h"
47 #include "core/frame/csp/CSPSource.h" 48 #include "core/frame/csp/CSPSource.h"
48 #include "core/frame/csp/ContentSecurityPolicy.h" 49 #include "core/frame/csp/ContentSecurityPolicy.h"
49 #include "core/html/HTMLInputElement.h" 50 #include "core/html/HTMLInputElement.h"
50 #include "core/html/HTMLMediaElement.h" 51 #include "core/html/HTMLMediaElement.h"
51 #include "core/html/shadow/TextControlInnerElements.h" 52 #include "core/html/shadow/TextControlInnerElements.h"
52 #include "core/layout/compositing/CompositedSelectionBound.h" 53 #include "core/layout/compositing/CompositedSelectionBound.h"
53 #include "core/loader/FrameLoaderClient.h"
54 #include "core/loader/FrameLoaderTypes.h" 54 #include "core/loader/FrameLoaderTypes.h"
55 #include "core/loader/NavigationPolicy.h" 55 #include "core/loader/NavigationPolicy.h"
56 #include "core/loader/appcache/ApplicationCacheHost.h" 56 #include "core/loader/appcache/ApplicationCacheHost.h"
57 #include "core/page/PageVisibilityState.h" 57 #include "core/page/PageVisibilityState.h"
58 #include "core/style/ComputedStyleConstants.h" 58 #include "core/style/ComputedStyleConstants.h"
59 #include "modules/accessibility/AXObject.h" 59 #include "modules/accessibility/AXObject.h"
60 #include "modules/indexeddb/IDBKey.h" 60 #include "modules/indexeddb/IDBKey.h"
61 #include "modules/indexeddb/IDBKeyPath.h" 61 #include "modules/indexeddb/IDBKeyPath.h"
62 #include "modules/indexeddb/IDBMetadata.h" 62 #include "modules/indexeddb/IDBMetadata.h"
63 #include "modules/indexeddb/IndexedDB.h" 63 #include "modules/indexeddb/IndexedDB.h"
(...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after
827 STATIC_ASSERT_ENUM(WebSandboxFlags::Popups, SandboxPopups); 827 STATIC_ASSERT_ENUM(WebSandboxFlags::Popups, SandboxPopups);
828 STATIC_ASSERT_ENUM(WebSandboxFlags::AutomaticFeatures, 828 STATIC_ASSERT_ENUM(WebSandboxFlags::AutomaticFeatures,
829 SandboxAutomaticFeatures); 829 SandboxAutomaticFeatures);
830 STATIC_ASSERT_ENUM(WebSandboxFlags::PointerLock, SandboxPointerLock); 830 STATIC_ASSERT_ENUM(WebSandboxFlags::PointerLock, SandboxPointerLock);
831 STATIC_ASSERT_ENUM(WebSandboxFlags::DocumentDomain, SandboxDocumentDomain); 831 STATIC_ASSERT_ENUM(WebSandboxFlags::DocumentDomain, SandboxDocumentDomain);
832 STATIC_ASSERT_ENUM(WebSandboxFlags::OrientationLock, SandboxOrientationLock); 832 STATIC_ASSERT_ENUM(WebSandboxFlags::OrientationLock, SandboxOrientationLock);
833 STATIC_ASSERT_ENUM(WebSandboxFlags::PropagatesToAuxiliaryBrowsingContexts, 833 STATIC_ASSERT_ENUM(WebSandboxFlags::PropagatesToAuxiliaryBrowsingContexts,
834 SandboxPropagatesToAuxiliaryBrowsingContexts); 834 SandboxPropagatesToAuxiliaryBrowsingContexts);
835 STATIC_ASSERT_ENUM(WebSandboxFlags::Modals, SandboxModals); 835 STATIC_ASSERT_ENUM(WebSandboxFlags::Modals, SandboxModals);
836 836
837 STATIC_ASSERT_ENUM(FrameLoaderClient::BeforeUnloadHandler, 837 STATIC_ASSERT_ENUM(LocalFrameClient::BeforeUnloadHandler,
838 WebFrameClient::BeforeUnloadHandler); 838 WebFrameClient::BeforeUnloadHandler);
839 STATIC_ASSERT_ENUM(FrameLoaderClient::UnloadHandler, 839 STATIC_ASSERT_ENUM(LocalFrameClient::UnloadHandler,
840 WebFrameClient::UnloadHandler); 840 WebFrameClient::UnloadHandler);
841 841
842 STATIC_ASSERT_ENUM(WebFrameLoadType::Standard, FrameLoadTypeStandard); 842 STATIC_ASSERT_ENUM(WebFrameLoadType::Standard, FrameLoadTypeStandard);
843 STATIC_ASSERT_ENUM(WebFrameLoadType::BackForward, FrameLoadTypeBackForward); 843 STATIC_ASSERT_ENUM(WebFrameLoadType::BackForward, FrameLoadTypeBackForward);
844 STATIC_ASSERT_ENUM(WebFrameLoadType::Reload, FrameLoadTypeReload); 844 STATIC_ASSERT_ENUM(WebFrameLoadType::Reload, FrameLoadTypeReload);
845 STATIC_ASSERT_ENUM(WebFrameLoadType::ReloadMainResource, 845 STATIC_ASSERT_ENUM(WebFrameLoadType::ReloadMainResource,
846 FrameLoadTypeReloadMainResource); 846 FrameLoadTypeReloadMainResource);
847 STATIC_ASSERT_ENUM(WebFrameLoadType::ReplaceCurrentItem, 847 STATIC_ASSERT_ENUM(WebFrameLoadType::ReplaceCurrentItem,
848 FrameLoadTypeReplaceCurrentItem); 848 FrameLoadTypeReplaceCurrentItem);
849 STATIC_ASSERT_ENUM(WebFrameLoadType::InitialInChildFrame, 849 STATIC_ASSERT_ENUM(WebFrameLoadType::InitialInChildFrame,
(...skipping 18 matching lines...) Expand all
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
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698