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

Side by Side Diff: components/filesystem/file_system_app.cc

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « components/filesystem/file_system_app.h ('k') | components/filesystem/file_system_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/filesystem/file_system_app.h" 5 #include "components/filesystem/file_system_app.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "mojo/application/public/cpp/application_connection.h" 11 #include "mojo/shell/public/cpp/application_connection.h"
12 #include "mojo/application/public/cpp/application_impl.h" 12 #include "mojo/shell/public/cpp/application_impl.h"
13 13
14 namespace filesystem { 14 namespace filesystem {
15 15
16 FileSystemApp::FileSystemApp() : app_(nullptr), in_shutdown_(false) {} 16 FileSystemApp::FileSystemApp() : app_(nullptr), in_shutdown_(false) {}
17 17
18 FileSystemApp::~FileSystemApp() {} 18 FileSystemApp::~FileSystemApp() {}
19 19
20 void FileSystemApp::Initialize(mojo::ApplicationImpl* app) { 20 void FileSystemApp::Initialize(mojo::ApplicationImpl* app) {
21 app_ = app; 21 app_ = app;
22 tracing_.Initialize(app); 22 tracing_.Initialize(app);
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 FileSystemApp::Client::~Client() {} 88 FileSystemApp::Client::~Client() {}
89 89
90 FileSystemApp::Client& FileSystemApp::Client::operator=( 90 FileSystemApp::Client& FileSystemApp::Client::operator=(
91 FileSystemApp::Client&& rhs) { 91 FileSystemApp::Client&& rhs) {
92 directory_ = rhs.directory_; 92 directory_ = rhs.directory_;
93 fs_client_ = std::move(rhs.fs_client_); 93 fs_client_ = std::move(rhs.fs_client_);
94 return *this; 94 return *this;
95 } 95 }
96 96
97 } // namespace filesystem 97 } // namespace filesystem
OLDNEW
« no previous file with comments | « components/filesystem/file_system_app.h ('k') | components/filesystem/file_system_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698