Commit 080ab395 authored by Sean Topping's avatar Sean Topping Committed by Commit Bot

[Chromecast] Move Mojo "interfaces" directories to "mojom"

This maintains consistency with other code.

Bug: 806965
Bug: internal b/79377657
Test: CQ
Change-Id: Iae3487bf573fcd704b0a9fda44ce1aaffe42d7a5
Reviewed-on: https://chromium-review.googlesource.com/1050694Reviewed-by: default avatarDaniel Cheng <dcheng@chromium.org>
Reviewed-by: default avatarStephen Lanham <slan@chromium.org>
Commit-Queue: Sean Topping <seantopping@chromium.org>
Cr-Commit-Position: refs/heads/master@{#557301}
parent 6941d940
...@@ -104,11 +104,10 @@ cast_source_set("browser") { ...@@ -104,11 +104,10 @@ cast_source_set("browser") {
"//chromecast/base:cast_sys_info", "//chromecast/base:cast_sys_info",
"//chromecast/base:cast_version", "//chromecast/base:cast_version",
"//chromecast/browser:resources", "//chromecast/browser:resources",
"//chromecast/browser/bluetooth/public/interfaces", "//chromecast/browser/bluetooth/public/mojom",
"//chromecast/common", "//chromecast/common",
"//chromecast/common:interfaces",
"//chromecast/common/media", "//chromecast/common/media",
"//chromecast/common/media:interfaces", "//chromecast/common/mojom",
"//chromecast/graphics", "//chromecast/graphics",
"//chromecast/media", "//chromecast/media",
"//chromecast/media:libcast_media", "//chromecast/media:libcast_media",
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#define CHROMECAST_BROWSER_APPLICATION_MEDIA_CAPABILITIES_H_ #define CHROMECAST_BROWSER_APPLICATION_MEDIA_CAPABILITIES_H_
#include "base/macros.h" #include "base/macros.h"
#include "chromecast/common/application_media_capabilities.mojom.h" #include "chromecast/common/mojom/application_media_capabilities.mojom.h"
#include "mojo/public/cpp/bindings/binding_set.h" #include "mojo/public/cpp/bindings/binding_set.h"
#include "mojo/public/cpp/bindings/interface_ptr_set.h" #include "mojo/public/cpp/bindings/interface_ptr_set.h"
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#include <string> #include <string>
#include <unordered_set> #include <unordered_set>
#include "chromecast/browser/bluetooth/public/interfaces/web_bluetooth.mojom.h" #include "chromecast/browser/bluetooth/public/mojom/web_bluetooth.mojom.h"
#include "content/public/browser/bluetooth_chooser.h" #include "content/public/browser/bluetooth_chooser.h"
#include "mojo/public/cpp/bindings/binding.h" #include "mojo/public/cpp/bindings/binding.h"
#include "mojo/public/cpp/bindings/interface_request.h" #include "mojo/public/cpp/bindings/interface_request.h"
...@@ -62,4 +62,4 @@ class CastBluetoothChooser : public content::BluetoothChooser, ...@@ -62,4 +62,4 @@ class CastBluetoothChooser : public content::BluetoothChooser,
} // namespace chromecast } // namespace chromecast
#endif // CHROMECAST_BROWSER_BLUETOOTH_CAST_BLUETOOTH_CHOOSER_H_ #endif // CHROMECAST_BROWSER_BLUETOOTH_CAST_BLUETOOTH_CHOOSER_H_
\ No newline at end of file
...@@ -6,7 +6,7 @@ import("//mojo/public/tools/bindings/mojom.gni") ...@@ -6,7 +6,7 @@ import("//mojo/public/tools/bindings/mojom.gni")
# TODO(slan): This likely falls in the class of interfaces that are provided by # TODO(slan): This likely falls in the class of interfaces that are provided by
# the browser. We should consider putting these in a common location. # the browser. We should consider putting these in a common location.
mojom("interfaces") { mojom("mojom") {
sources = [ sources = [
"web_bluetooth.mojom", "web_bluetooth.mojom",
] ]
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#include <vector> #include <vector>
#include "base/macros.h" #include "base/macros.h"
#include "chromecast/common/media/media_caps.mojom.h" #include "chromecast/common/mojom/media_caps.mojom.h"
#include "mojo/public/cpp/bindings/binding_set.h" #include "mojo/public/cpp/bindings/binding_set.h"
#include "mojo/public/cpp/bindings/interface_ptr_set.h" #include "mojo/public/cpp/bindings/interface_ptr_set.h"
#include "ui/gfx/geometry/size.h" #include "ui/gfx/geometry/size.h"
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#include "base/macros.h" #include "base/macros.h"
#include "base/memory/memory_pressure_listener.h" #include "base/memory/memory_pressure_listener.h"
#include "chromecast/common/memory_pressure.mojom.h" #include "chromecast/common/mojom/memory_pressure.mojom.h"
#include "mojo/public/cpp/bindings/binding_set.h" #include "mojo/public/cpp/bindings/binding_set.h"
#include "mojo/public/cpp/bindings/interface_ptr_set.h" #include "mojo/public/cpp/bindings/interface_ptr_set.h"
......
...@@ -52,13 +52,3 @@ cast_source_set("common") { ...@@ -52,13 +52,3 @@ cast_source_set("common") {
] ]
} }
} }
mojom("interfaces") {
sources = [
"application_media_capabilities.mojom",
]
if (!is_android) {
sources += [ "memory_pressure.mojom" ]
}
}
...@@ -24,9 +24,3 @@ cast_source_set("media") { ...@@ -24,9 +24,3 @@ cast_source_set("media") {
public_configs = [ "//chromecast:playready_config" ] public_configs = [ "//chromecast:playready_config" ]
} }
} }
mojom("interfaces") {
sources = [
"media_caps.mojom",
]
}
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//mojo/public/tools/bindings/mojom.gni")
mojom("mojom") {
sources = [
"application_media_capabilities.mojom",
"media_caps.mojom",
"memory_pressure.mojom",
]
}
per-file *.mojom=set noparent
per-file *.mojom=file://ipc/SECURITY_OWNERS
...@@ -48,8 +48,8 @@ cast_source_set("renderer") { ...@@ -48,8 +48,8 @@ cast_source_set("renderer") {
"//base", "//base",
"//chromecast:chromecast_buildflags", "//chromecast:chromecast_buildflags",
"//chromecast/base", "//chromecast/base",
"//chromecast/common:interfaces",
"//chromecast/common/media", "//chromecast/common/media",
"//chromecast/common/mojom",
"//chromecast/media", "//chromecast/media",
"//components/network_hints/renderer", "//components/network_hints/renderer",
"//content/public/common", "//content/public/common",
...@@ -72,7 +72,7 @@ cast_source_set("renderer") { ...@@ -72,7 +72,7 @@ cast_source_set("renderer") {
] ]
deps += [ deps += [
"//chromecast/common:interfaces", "//chromecast/common/mojom",
"//mojo/public/cpp/bindings", "//mojo/public/cpp/bindings",
] ]
} }
...@@ -88,8 +88,8 @@ cast_source_set("renderer") { ...@@ -88,8 +88,8 @@ cast_source_set("renderer") {
] ]
deps += [ deps += [
"//chromecast/common/extensions_api:api",
"//chromecast/common", "//chromecast/common",
"//chromecast/common/extensions_api:api",
"//extensions/common", "//extensions/common",
"//extensions/renderer", "//extensions/renderer",
"//gin:gin", "//gin:gin",
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
#include "base/macros.h" #include "base/macros.h"
#include "build/build_config.h" #include "build/build_config.h"
#include "chromecast/chromecast_buildflags.h" #include "chromecast/chromecast_buildflags.h"
#include "chromecast/common/application_media_capabilities.mojom.h" #include "chromecast/common/mojom/application_media_capabilities.mojom.h"
#include "content/public/renderer/content_renderer_client.h" #include "content/public/renderer/content_renderer_client.h"
#include "media/base/audio_codecs.h" #include "media/base/audio_codecs.h"
#include "mojo/public/cpp/bindings/binding.h" #include "mojo/public/cpp/bindings/binding.h"
......
...@@ -15,7 +15,7 @@ cast_source_set("media") { ...@@ -15,7 +15,7 @@ cast_source_set("media") {
deps = [ deps = [
"//base", "//base",
"//chromecast:chromecast_buildflags", "//chromecast:chromecast_buildflags",
"//chromecast/common/media:interfaces", "//chromecast/common/mojom",
"//chromecast/media", "//chromecast/media",
"//chromecast/media/cdm", "//chromecast/media/cdm",
"//chromecast/public:public", "//chromecast/public:public",
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#include <memory> #include <memory>
#include "base/macros.h" #include "base/macros.h"
#include "chromecast/common/media/media_caps.mojom.h" #include "chromecast/common/mojom/media_caps.mojom.h"
#include "chromecast/media/base/supported_codec_profile_levels_memo.h" #include "chromecast/media/base/supported_codec_profile_levels_memo.h"
#include "mojo/public/cpp/bindings/binding.h" #include "mojo/public/cpp/bindings/binding.h"
#include "ui/gfx/geometry/size.h" #include "ui/gfx/geometry/size.h"
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#define CHROMECAST_RENDERER_MEMORY_PRESSURE_OBSERVER_IMPL_H_ #define CHROMECAST_RENDERER_MEMORY_PRESSURE_OBSERVER_IMPL_H_
#include "base/macros.h" #include "base/macros.h"
#include "chromecast/common/memory_pressure.mojom.h" #include "chromecast/common/mojom/memory_pressure.mojom.h"
#include "mojo/public/cpp/bindings/binding.h" #include "mojo/public/cpp/bindings/binding.h"
namespace chromecast { namespace chromecast {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment