forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
viz: Move CompositorFrame's mojom from cc to services/viz
TBR=sky@chromium.org Bug=722935 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel Change-Id: I1fe2b3ab68a4bce06869ce3ea92ffd1b76dcd289 Reviewed-on: https://chromium-review.googlesource.com/601190 Commit-Queue: Saman Sami <samans@chromium.org> Reviewed-by: Saman Sami <samans@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org> Reviewed-by: Robert Kroeger <rjkroege@chromium.org> Cr-Commit-Position: refs/heads/master@{#492170}
- Loading branch information
Saman Sami
authored and
Commit Bot
committed
Aug 4, 2017
1 parent
5e1171c
commit 7839147
Showing
21 changed files
with
222 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ include_rules = [ | |
"+ui/gfx/geometry/mojo", | ||
"+ui/latency/ipc", | ||
"+ui/latency/mojo", | ||
"+services/viz/public", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
include_rules = [ | ||
"+ui/gfx/ipc", | ||
"+ui/gfx/mojo", | ||
"+ui/gfx/geometry/mojo", | ||
"+cc", | ||
"+gpu/ipc", | ||
"+skia/public/interfaces", | ||
"+ui/latency/mojo", | ||
] |
15 changes: 15 additions & 0 deletions
15
services/viz/public/cpp/compositing/compositor_frame.typemap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Copyright 2016 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. | ||
|
||
mojom = "//services/viz/public/interfaces/compositing/compositor_frame.mojom" | ||
public_headers = [ "//cc/output/compositor_frame.h" ] | ||
traits_headers = | ||
[ "//services/viz/public/cpp/compositing/compositor_frame_struct_traits.h" ] | ||
sources = [ | ||
"//services/viz/public/cpp/compositing/compositor_frame_struct_traits.cc", | ||
] | ||
deps = [ | ||
"//cc", | ||
] | ||
type_mappings = [ "viz.mojom.CompositorFrame=cc::CompositorFrame[move_only]" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.