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

Unified Diff: mojo/loader/job.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/DEPS ('k') | mojo/loader/job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/loader/job.h
diff --git a/mojo/loader/job.h b/mojo/loader/job.h
deleted file mode 100644
index 253e9ae5fa06c3a0cc55bdfd47f8cd71b69b1cc6..0000000000000000000000000000000000000000
--- a/mojo/loader/job.h
+++ /dev/null
@@ -1,42 +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_JOB_H_
-#define MOJO_LOADER_JOB_H_
-
-#include "url/gurl.h"
-
-namespace base {
-class FilePath;
-}
-
-namespace mojo {
-namespace loader {
-
-// A job represents an individual network load operation.
-class Job {
- public:
- class Delegate {
- public:
- virtual void DidCompleteLoad(const GURL& app_url,
- const base::FilePath& app_path) = 0;
-
- protected:
- virtual ~Delegate();
- };
-
- // You can cancel a job by deleting it.
- virtual ~Job();
-
- protected:
- // You can create a job using Loader.
- Job();
-
- DISALLOW_COPY_AND_ASSIGN(Job);
-};
-
-} // namespace loader
-} // namespace mojo
-
-#endif // MOJO_LOADER_JOB_H_
« no previous file with comments | « mojo/loader/DEPS ('k') | mojo/loader/job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698