Skip to content

Commit 3f16fb1

Browse files
committed
Rename screen_recording library as screen_recording_controls
to better reflect the intended purpose of controlling running devices' screen recordings as opposed to actually implementing the feature.
1 parent b1cf4f2 commit 3f16fb1

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

base/cvd/cuttlefish/host/commands/cvd/instances/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ cf_cc_library(
146146
"//cuttlefish/host/libs/config:config_constants",
147147
"//cuttlefish/host/libs/config:config_utils",
148148
"//cuttlefish/host/libs/config:cuttlefish_config",
149-
"//cuttlefish/host/libs/screen_recording",
149+
"//cuttlefish/host/libs/screen_recording_controls",
150150
"//libbase",
151151
"@fmt",
152152
"@jsoncpp",

base/cvd/cuttlefish/host/commands/cvd/instances/instance_record.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include "cuttlefish/host/libs/command_util/runner/defs.h"
3535
#include "cuttlefish/host/libs/command_util/util.h"
3636
#include "cuttlefish/host/libs/config/cuttlefish_config.h"
37-
#include "cuttlefish/host/libs/screen_recording/screen_recording.h"
37+
#include "cuttlefish/host/libs/screen_recording_controls/screen_recording_controls.h"
3838

3939
namespace cuttlefish {
4040

base/cvd/cuttlefish/host/commands/record_cvd/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cf_cc_binary(
1212
deps = [
1313
"//cuttlefish/common/libs/utils:result",
1414
"//cuttlefish/host/libs/config:cuttlefish_config",
15-
"//cuttlefish/host/libs/screen_recording",
15+
"//cuttlefish/host/libs/screen_recording_controls",
1616
"//libbase",
1717
"@gflags",
1818
],

base/cvd/cuttlefish/host/commands/record_cvd/record_cvd.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
#include "cuttlefish/common/libs/utils/result.h"
2424
#include "cuttlefish/host/libs/config/cuttlefish_config.h"
25-
#include "cuttlefish/host/libs/screen_recording/screen_recording.h"
25+
#include "cuttlefish/host/libs/screen_recording_controls/screen_recording_controls.h"
2626

2727
DEFINE_int32(instance_num, cuttlefish::GetInstance(),
2828
"Which instance to screen record.");

base/cvd/cuttlefish/host/commands/screen_recording_server/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ cf_cc_binary(
3939
"//cuttlefish/host/libs/command_util:libcuttlefish_run_cvd_proto",
4040
"//cuttlefish/host/libs/config:cuttlefish_config",
4141
"//cuttlefish/host/libs/config:logging",
42-
"//cuttlefish/host/libs/screen_recording",
42+
"//cuttlefish/host/libs/screen_recording_controls",
4343
"//libbase",
4444
"@gflags",
4545
"@grpc",

base/cvd/cuttlefish/host/commands/screen_recording_server/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include "cuttlefish/host/commands/screen_recording_server/screen_recording.grpc.pb.h"
3131
#include "cuttlefish/host/libs/config/cuttlefish_config.h"
3232
#include "cuttlefish/host/libs/config/logging.h"
33-
#include "cuttlefish/host/libs/screen_recording/screen_recording.h"
33+
#include "cuttlefish/host/libs/screen_recording_controls/screen_recording_controls.h"
3434

3535
using google::protobuf::Empty;
3636
using grpc::Server;

base/cvd/cuttlefish/host/libs/screen_recording/BUILD renamed to base/cvd/cuttlefish/host/libs/screen_recording_controls/BUILD

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ package(
55
)
66

77
cf_cc_library(
8-
name = "screen_recording",
8+
name = "screen_recording_controls",
99
srcs = [
10-
"screen_recording.cc",
10+
"screen_recording_controls.cc",
1111
],
1212
hdrs = [
13-
"screen_recording.h",
13+
"screen_recording_controls.h",
1414
],
1515
deps = [
1616
"//cuttlefish/common/libs/fs",

base/cvd/cuttlefish/host/libs/screen_recording/screen_recording.cc renamed to base/cvd/cuttlefish/host/libs/screen_recording_controls/screen_recording_controls.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
#include "cuttlefish/host/libs/screen_recording/screen_recording.h"
17+
#include "cuttlefish/host/libs/screen_recording_controls/screen_recording_controls.h"
1818

1919
#include <chrono>
2020

base/cvd/cuttlefish/host/libs/screen_recording/screen_recording.h renamed to base/cvd/cuttlefish/host/libs/screen_recording_controls/screen_recording_controls.h

File renamed without changes.

0 commit comments

Comments
 (0)