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

Side by Side Diff: chrome/browser/chromeos/cros/fake/fake_update_library.h

Issue 2847072: Green Tree Tactical Force: Revert skrul's bad commits (probably a git-cl bug). (Closed)
Patch Set: Created 10 years, 5 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
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_FAKE_FAKE_UPDATE_LIBRARY_H_
6 #define CHROME_BROWSER_CHROMEOS_CROS_FAKE_FAKE_UPDATE_LIBRARY_H_
7
8 #include "chrome/browser/chromeos/cros/update_library.h"
9
10 namespace chromeos {
11
12 class FakeUpdateLibrary : public UpdateLibrary {
13 public:
14 FakeUpdateLibrary() {}
15 virtual ~FakeUpdateLibrary() {}
16 virtual void AddObserver(Observer* observer) {}
17 virtual void RemoveObserver(Observer* observer) {}
18 virtual const Status& status() const {
19 return status_;
20 }
21
22 private:
23 Status status_;
24 };
25
26 } // namespace chromeos
27
28 #endif // CHROME_BROWSER_CHROMEOS_CROS_FAKE_FAKE_UPDATE_LIBRARY_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/cros/fake/fake_system_library.h ('k') | chrome/browser/gtk/options/content_page_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698