| Index: third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
|
| index d0a5abc9d1a71af13d059d74f18a060abc84bdd0..a2d5ba596366929a413d5e31a87b1096a0c8b60d 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
|
| @@ -211,15 +211,14 @@ KURL urlWithoutFragment(const KURL& url) {
|
| return result;
|
| }
|
|
|
| -String mixedContentTypeForContextType(
|
| - WebMixedContent::ContextType contextType) {
|
| +String mixedContentTypeForContextType(WebMixedContentContextType contextType) {
|
| switch (contextType) {
|
| - case WebMixedContent::ContextType::NotMixedContent:
|
| + case WebMixedContentContextType::NotMixedContent:
|
| return protocol::Network::Request::MixedContentTypeEnum::None;
|
| - case WebMixedContent::ContextType::Blockable:
|
| + case WebMixedContentContextType::Blockable:
|
| return protocol::Network::Request::MixedContentTypeEnum::Blockable;
|
| - case WebMixedContent::ContextType::OptionallyBlockable:
|
| - case WebMixedContent::ContextType::ShouldBeBlockable:
|
| + case WebMixedContentContextType::OptionallyBlockable:
|
| + case WebMixedContentContextType::ShouldBeBlockable:
|
| return protocol::Network::Request::MixedContentTypeEnum::
|
| OptionallyBlockable;
|
| }
|
|
|