Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions SampleApps/WebView2APISample/ProcessComponent.cpp
Original file line numberDiff line numberDiff line change
Expand Up@@ -456,6 +456,9 @@ std::wstring ProcessComponent::ProcessFailedReasonToString(
REASON_ENTRY(COREWEBVIEW2_PROCESS_FAILED_REASON_CRASHED);
REASON_ENTRY(COREWEBVIEW2_PROCESS_FAILED_REASON_LAUNCH_FAILED);
REASON_ENTRY(COREWEBVIEW2_PROCESS_FAILED_REASON_OUT_OF_MEMORY);
REASON_ENTRY(COREWEBVIEW2_PROCESS_FAILED_REASON_NORMAL_EXIT);
REASON_ENTRY(COREWEBVIEW2_PROCESS_FAILED_REASON_ABNORMAL_EXIT);
REASON_ENTRY(COREWEBVIEW2_PROCESS_FAILED_REASON_INTEGRITY_FAILURE);

#undef REASON_ENTRY
}
Expand Down
12 changes: 12 additions & 0 deletions SampleApps/WebView2APISample/ScenarioOriginConfigurationAPI.cpp
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
// Copyright (C) Microsoft Corporation. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "stdafx.h"

#include <string>
#include <vector>

#include "CheckFailure.h"
#include "TextInputDialog.h"
#include "Util.h"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
// Copyright (C) Microsoft Corporation. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#pragma once
Loading
Loading