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

Side by Side Diff: mojo/tools/package_manager/package_manager_application.h

Issue 617503003: Mojo: MOJO_OVERRIDE -> override in mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 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 unified diff | Download patch
« no previous file with comments | « mojo/shell/run.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef MOJO_PACKAGE_MANAGER_PACKAGE_MANAGER_APPLICATION_H_ 5 #ifndef MOJO_PACKAGE_MANAGER_PACKAGE_MANAGER_APPLICATION_H_
6 #define MOJO_PACKAGE_MANAGER_PACKAGE_MANAGER_APPLICATION_H_ 6 #define MOJO_PACKAGE_MANAGER_PACKAGE_MANAGER_APPLICATION_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 10
(...skipping 25 matching lines...) Expand all
36 36
37 void StartLoad(const GURL& url); 37 void StartLoad(const GURL& url);
38 38
39 void LoadDeps(const Manifest& manifest); 39 void LoadDeps(const Manifest& manifest);
40 40
41 // Deletes the pending load entry for the given URL and possibly exits the 41 // Deletes the pending load entry for the given URL and possibly exits the
42 // message loop if all loads are done. 42 // message loop if all loads are done.
43 void PendingLoadComplete(const GURL& url); 43 void PendingLoadComplete(const GURL& url);
44 44
45 // ApplicationDelegate implementation. 45 // ApplicationDelegate implementation.
46 virtual void Initialize(ApplicationImpl* app) MOJO_OVERRIDE; 46 virtual void Initialize(ApplicationImpl* app) override;
47 47
48 // PackageFetcher. 48 // PackageFetcher.
49 virtual void FetchSucceeded(const GURL& url, 49 virtual void FetchSucceeded(const GURL& url,
50 const base::FilePath& name) override; 50 const base::FilePath& name) override;
51 virtual void FetchFailed(const GURL& url) override; 51 virtual void FetchFailed(const GURL& url) override;
52 52
53 mojo::NetworkServicePtr network_service_; 53 mojo::NetworkServicePtr network_service_;
54 54
55 PendingLoadMap pending_; // Owning pointers. 55 PendingLoadMap pending_; // Owning pointers.
56 std::set<GURL> completed_; 56 std::set<GURL> completed_;
57 57
58 MOJO_DISALLOW_COPY_AND_ASSIGN(PackageManagerApplication); 58 MOJO_DISALLOW_COPY_AND_ASSIGN(PackageManagerApplication);
59 }; 59 };
60 60
61 } // namespace mojo 61 } // namespace mojo
62 62
63 #endif // MOJO_PACKAGE_MANAGER_PACKAGE_MANAGER_APPLICATION_H 63 #endif // MOJO_PACKAGE_MANAGER_PACKAGE_MANAGER_APPLICATION_H
OLDNEW
« no previous file with comments | « mojo/shell/run.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698