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

Unified Diff: chrome/browser/media/output_protection_impl.h

Issue 1977173002: Rename media::interfaces to media::mojom. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: android + chromeos files Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/media/output_protection_impl.h
diff --git a/chrome/browser/media/output_protection_impl.h b/chrome/browser/media/output_protection_impl.h
index 82ca2aa8ce88477a23404d5577895229e8a9f930..54fb916973b4972d0a2db8214efc6ead140e5c14 100644
--- a/chrome/browser/media/output_protection_impl.h
+++ b/chrome/browser/media/output_protection_impl.h
@@ -9,26 +9,26 @@
#include "media/mojo/interfaces/output_protection.mojom.h"
#include "mojo/public/cpp/bindings/strong_binding.h"
-// Implements media::interfaces::OutputProtection to check display links and
+// Implements media::mojom::OutputProtection to check display links and
// their statuses. On all platforms we'll check the network links. On ChromeOS
// we'll also check the hardware links. Can only be used on the UI thread.
-class OutputProtectionImpl : public media::interfaces::OutputProtection {
+class OutputProtectionImpl : public media::mojom::OutputProtection {
public:
static void Create(
content::RenderFrameHost* render_frame_host,
- mojo::InterfaceRequest<media::interfaces::OutputProtection> request);
+ mojo::InterfaceRequest<media::mojom::OutputProtection> request);
OutputProtectionImpl(content::RenderFrameHost* render_frame_host,
mojo::InterfaceRequest<OutputProtection> request);
~OutputProtectionImpl() final;
- // media::interfaces::OutputProtection implementation.
+ // media::mojom::OutputProtection implementation.
void QueryStatus(const QueryStatusCallback& callback) final;
void EnableProtection(uint32_t desired_protection_mask,
const EnableProtectionCallback& callback) final;
private:
- mojo::StrongBinding<media::interfaces::OutputProtection> binding_;
+ mojo::StrongBinding<media::mojom::OutputProtection> binding_;
content::RenderFrameHost* const render_frame_host_;
« no previous file with comments | « chrome/browser/chromeos/attestation/platform_verification_impl.cc ('k') | chrome/browser/media/output_protection_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698