File tree Expand file tree Collapse file tree 3 files changed +1
-16
lines changed Expand file tree Collapse file tree 3 files changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -215,15 +215,10 @@ bool DartComponentController::CreateAndBindNamespace() {
215
215
// That will prevent FL-175 for public directory
216
216
fdio_service_connect_at (dart_outgoing_dir_ptr_.channel ().get (), " svc" ,
217
217
dart_public_dir.NewRequest ().TakeChannel ().release ());
218
-
219
- #pragma clang diagnostic push
220
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
221
-
218
+
222
219
auto composed_service_dir = std::make_unique<vfs::ComposedServiceDir>();
223
220
composed_service_dir->set_fallback (std::move (dart_public_dir));
224
221
225
- #pragma clang diagnostic pop
226
-
227
222
// Clone and check if client is servicing the directory.
228
223
dart_outgoing_dir_ptr_->Clone (
229
224
fuchsia::io::OpenFlags::DESCRIBE |
Original file line number Diff line number Diff line change @@ -259,14 +259,9 @@ ComponentV2::ComponentV2(
259
259
fdio_service_connect_at (directory_ptr_.channel ().get (), " svc" ,
260
260
request.release ());
261
261
262
- #pragma clang diagnostic push
263
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
264
-
265
262
auto composed_service_dir = std::make_unique<vfs::ComposedServiceDir>();
266
263
composed_service_dir->set_fallback (std::move (flutter_public_dir));
267
264
268
- #pragma clang diagnostic pop
269
-
270
265
// Clone and check if client is servicing the directory.
271
266
directory_ptr_->Clone (fuchsia::io::OpenFlags::DESCRIBE |
272
267
fuchsia::io::OpenFlags::CLONE_SAME_RIGHTS,
Original file line number Diff line number Diff line change 9
9
10
10
namespace dart_utils {
11
11
12
- #pragma clang diagnostic push
13
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
14
-
15
12
class VMServiceObject : public vfs ::LazyDir {
16
13
public:
17
14
static constexpr const char * kDirName = " DartVM" ;
@@ -24,8 +21,6 @@ class VMServiceObject : public vfs::LazyDir {
24
21
std::string name) const override ;
25
22
};
26
23
27
- #pragma clang diagnostic pop
28
-
29
24
} // namespace dart_utils
30
25
31
26
#endif // FLUTTER_SHELL_PLATFORM_FUCHSIA_RUNTIME_DART_UTILS_VMSERVICE_OBJECT_H_
You can’t perform that action at this time.
0 commit comments