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

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

Issue 1156473002: Refactor FrameLoader loading interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 6 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 | « Source/modules/plugins/DOMPluginArray.cpp ('k') | Source/web/RemoteFrameClientImpl.h » ('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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 #include "public/platform/modules/indexeddb/WebIDBKeyPath.h" 109 #include "public/platform/modules/indexeddb/WebIDBKeyPath.h"
110 #include "public/platform/modules/indexeddb/WebIDBMetadata.h" 110 #include "public/platform/modules/indexeddb/WebIDBMetadata.h"
111 #include "public/platform/modules/indexeddb/WebIDBTypes.h" 111 #include "public/platform/modules/indexeddb/WebIDBTypes.h"
112 #include "public/web/WebAXEnums.h" 112 #include "public/web/WebAXEnums.h"
113 #include "public/web/WebAXObject.h" 113 #include "public/web/WebAXObject.h"
114 #include "public/web/WebConsoleMessage.h" 114 #include "public/web/WebConsoleMessage.h"
115 #include "public/web/WebContentSecurityPolicy.h" 115 #include "public/web/WebContentSecurityPolicy.h"
116 #include "public/web/WebFontDescription.h" 116 #include "public/web/WebFontDescription.h"
117 #include "public/web/WebFormElement.h" 117 #include "public/web/WebFormElement.h"
118 #include "public/web/WebFrameClient.h" 118 #include "public/web/WebFrameClient.h"
119 #include "public/web/WebFrameLoadType.h"
119 #include "public/web/WebGeolocationError.h" 120 #include "public/web/WebGeolocationError.h"
120 #include "public/web/WebGeolocationPosition.h" 121 #include "public/web/WebGeolocationPosition.h"
121 #include "public/web/WebHistoryCommitType.h" 122 #include "public/web/WebHistoryCommitType.h"
122 #include "public/web/WebHistoryItem.h" 123 #include "public/web/WebHistoryItem.h"
123 #include "public/web/WebIconURL.h" 124 #include "public/web/WebIconURL.h"
124 #include "public/web/WebInputElement.h" 125 #include "public/web/WebInputElement.h"
125 #include "public/web/WebInputEvent.h" 126 #include "public/web/WebInputEvent.h"
126 #include "public/web/WebNavigationPolicy.h" 127 #include "public/web/WebNavigationPolicy.h"
127 #include "public/web/WebNavigatorContentUtilsClient.h" 128 #include "public/web/WebNavigatorContentUtilsClient.h"
128 #include "public/web/WebSandboxFlags.h" 129 #include "public/web/WebSandboxFlags.h"
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Popups, SandboxPopups); 716 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Popups, SandboxPopups);
716 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::AutomaticFeatures, SandboxAutomatic Features); 717 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::AutomaticFeatures, SandboxAutomatic Features);
717 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PointerLock, SandboxPointerLock); 718 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PointerLock, SandboxPointerLock);
718 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::DocumentDomain, SandboxDocumentDoma in); 719 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::DocumentDomain, SandboxDocumentDoma in);
719 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::OrientationLock, SandboxOrientation Lock); 720 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::OrientationLock, SandboxOrientation Lock);
720 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PropagatesToAuxiliaryBrowsingContex ts, SandboxPropagatesToAuxiliaryBrowsingContexts); 721 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::PropagatesToAuxiliaryBrowsingContex ts, SandboxPropagatesToAuxiliaryBrowsingContexts);
721 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Modals, SandboxModals); 722 STATIC_ASSERT_MATCHING_ENUM(WebSandboxFlags::Modals, SandboxModals);
722 723
723 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::BeforeUnloadHandler, WebFrameClie nt::BeforeUnloadHandler); 724 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::BeforeUnloadHandler, WebFrameClie nt::BeforeUnloadHandler);
724 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::UnloadHandler, WebFrameClient::Un loadHandler); 725 STATIC_ASSERT_MATCHING_ENUM(FrameLoaderClient::UnloadHandler, WebFrameClient::Un loadHandler);
726
727 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::Standard, FrameLoadTypeStandard);
728 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::BackForward, FrameLoadTypeBackForw ard);
729 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::Reload, FrameLoadTypeReload);
730 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::Same, FrameLoadTypeSame);
731 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::RedirectWithLockedBackForwardList, FrameLoadTypeRedirectWithLockedBackForwardList);
732 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::InitialInChildFrame, FrameLoadType InitialInChildFrame);
733 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::InitialHistoryLoad, FrameLoadTypeI nitialHistoryLoad);
734 STATIC_ASSERT_MATCHING_ENUM(WebFrameLoadType::ReloadFromOrigin, FrameLoadTypeRel oadFromOrigin);
725 } // namespace blink 735 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/plugins/DOMPluginArray.cpp ('k') | Source/web/RemoteFrameClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698