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

Unified Diff: mojo/loader/loader.h

Issue 47433002: Cleanup mojo_shell and sample_app a bit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/loader/job.cc ('k') | mojo/loader/loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/loader/loader.h
diff --git a/mojo/loader/loader.h b/mojo/loader/loader.h
deleted file mode 100644
index 87b9f3d60bac3592dd57b8268af2a82fc6d94fb2..0000000000000000000000000000000000000000
--- a/mojo/loader/loader.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2013 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.
-
-#ifndef MOJO_LOADER_LOADER_H_
-#define MOJO_LOADER_LOADER_H_
-
-#include "base/files/file_path.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/single_thread_task_runner.h"
-#include "mojo/loader/job.h"
-#include "url/gurl.h"
-
-namespace mojo {
-namespace loader {
-
-class Loader {
- public:
- Loader(base::SingleThreadTaskRunner* network_runner,
- base::SingleThreadTaskRunner* file_runner,
- base::FilePath base_path);
- ~Loader();
-
- scoped_ptr<Job> Load(const GURL& app_url, Job::Delegate* delegate);
-
- private:
- class Data;
-
- scoped_ptr<Data> data_;
-
- DISALLOW_COPY_AND_ASSIGN(Loader);
-};
-
-} // namespace loader
-} // namespace mojo
-
-#endif // MOJO_LOADER_LOADER_H_
« no previous file with comments | « mojo/loader/job.cc ('k') | mojo/loader/loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698