
Automated patch, intended to be effectively a no-op. Context: https://groups.google.com/a/chromium.org/g/cxx/c/nBD_1LaanTc/m/ghh-ZZhWAwAJ?utm_medium=email&utm_source=footer As of https://crrev.com/1204351, absl::optional is now a type alias for std::optional. We should migrate toward it. Script: ``` function replace { echo "Replacing $1 by $2" git grep -l "$1" \ | cut -f1 -d: \ | grep \ -e "^content" \ | sort \ | uniq \ | grep \ -e "\.h" \ -e "\.cc" \ -e "\.mm" \ -e "\.py" \ | xargs sed -i "s/$1/$2/g" } replace "absl::make_optional" "std::make_optional" replace "absl::optional" "std::optional" replace "absl::nullopt" "std::nullopt" replace "absl::in_place" "std::in_place" replace "absl::in_place_t" "std::in_place_t" replace "\"third_party\/abseil-cpp\/absl\/types\/optional.h\"" "<optional>" git cl format ``` # Skipping unrelated "check_network_annotation" errors. NOTRY=True Bug: chromium:1500249 Change-Id: Icfd31a71d8faf63a2e8d5401127e7ee74cc1c413 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5185537 Auto-Submit: Arthur Sonzogni <arthursonzogni@chromium.org> Commit-Queue: Arthur Sonzogni <arthursonzogni@chromium.org> Owners-Override: Avi Drissman <avi@chromium.org> Reviewed-by: Avi Drissman <avi@chromium.org> Reviewed-by: danakj <danakj@chromium.org> Cr-Commit-Position: refs/heads/main@{#1245739}
80 lines
3.1 KiB
C++
80 lines
3.1 KiB
C++
// Copyright 2019 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef CONTENT_BROWSER_RENDERER_HOST_IPC_UTILS_H_
|
|
#define CONTENT_BROWSER_RENDERER_HOST_IPC_UTILS_H_
|
|
|
|
#include "base/memory/ref_counted.h"
|
|
#include "content/common/frame.mojom.h"
|
|
#include "services/network/public/cpp/shared_url_loader_factory.h"
|
|
#include "third_party/blink/public/mojom/frame/frame.mojom.h"
|
|
#include "third_party/blink/public/mojom/navigation/navigation_params.mojom-forward.h"
|
|
#include "url/gurl.h"
|
|
|
|
namespace content {
|
|
|
|
class RenderFrameHostImpl;
|
|
|
|
// Verifies that |params| are valid and can be accessed by |process|.
|
|
//
|
|
// If the |params| are valid, returns true.
|
|
//
|
|
// Otherwise, terminates |process| and returns false.
|
|
//
|
|
// This function has to be called on the UI thread.
|
|
bool VerifyDownloadUrlParams(RenderProcessHost* process,
|
|
const blink::mojom::DownloadURLParams& params);
|
|
|
|
// Verifies that |params| are valid and can be accessed by |process|.
|
|
// |current_rfh| represents the current frame on which OpenURL is being called
|
|
//
|
|
// Returns true if the |params| are valid. As a side-effect of the verification
|
|
// |out_validated_url| and |out_blob_url_loader_factory| will be populated.
|
|
//
|
|
// Terminates |process| and returns false if the |params| are invalid.
|
|
//
|
|
// This function has to be called on the UI thread.
|
|
bool VerifyOpenURLParams(RenderFrameHostImpl* current_rfh,
|
|
RenderProcessHost* process,
|
|
const blink::mojom::OpenURLParamsPtr& params,
|
|
GURL* out_validated_url,
|
|
scoped_refptr<network::SharedURLLoaderFactory>*
|
|
out_blob_url_loader_factory);
|
|
|
|
// Verifies that CommonNavigationParams are valid and can be accessed by
|
|
// |current_rfh|'s process.
|
|
//
|
|
// Returns true if the CommonNavigationParams are valid. As a side-effect of
|
|
// the verification parts of |common_params| will be rewritten (e.g. some
|
|
// URLs will be filtered).
|
|
//
|
|
// Terminates |current_rfh|'s process and returns false if the
|
|
// CommonNavigationParams are invalid.
|
|
//
|
|
// This function has to be called on the UI thread.
|
|
bool VerifyBeginNavigationCommonParams(
|
|
const RenderFrameHostImpl& current_rfh,
|
|
blink::mojom::CommonNavigationParams* common_params,
|
|
std::optional<blink::LocalFrameToken>& initiator_frame_token);
|
|
|
|
// Verify that the initiator frame identified by `initiator_frame_token` and
|
|
// `initiator_process_id` can navigate `current_rfh`.
|
|
//
|
|
// This is best effort: the frame with the corresponding frame token may have
|
|
// been deleted before the navigation begins.
|
|
//
|
|
// Returns true if the navigation is valid, or if the an initiator frame is not
|
|
// found. Terminates the renderer the process associated with
|
|
// |initiator_process_id| and returns false if the navigation is not allowed.
|
|
//
|
|
// This function has to be called on the UI thread.
|
|
bool VerifyNavigationInitiator(
|
|
RenderFrameHostImpl* current_rfh,
|
|
const std::optional<blink::LocalFrameToken>& initiator_frame_token,
|
|
int initiator_process_id);
|
|
|
|
} // namespace content
|
|
|
|
#endif // CONTENT_BROWSER_RENDERER_HOST_IPC_UTILS_H_
|