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

Side by Side Diff: chrome/browser/chromeos/cros/mock_update_library.h

Issue 2859043: Added system notification for update_engine. (Closed) Base URL: http://src.chromium.org/git/chromium.git
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_MOCK_UPDATE_LIBRARY_H_
6 #define CHROME_BROWSER_CHROMEOS_CROS_MOCK_UPDATE_LIBRARY_H_
7
8 #include "base/observer_list.h"
9 #include "chrome/browser/chromeos/cros/update_library.h"
10 #include "testing/gmock/include/gmock/gmock.h"
11
12 namespace chromeos {
13
14 class MockUpdateLibrary : public UpdateLibrary {
15 public:
16 MockUpdateLibrary() {}
17 virtual ~MockUpdateLibrary() {}
18 MOCK_METHOD1(AddObserver, void(Observer*)); // NOLINT
19 MOCK_METHOD1(RemoveObserver, void(Observer*)); // NOLINT
20
21 MOCK_CONST_METHOD0(status, const Status&(void));
22
23 private:
24 DISALLOW_COPY_AND_ASSIGN(MockUpdateLibrary);
25 };
26
27 } // namespace chromeos
28
29 #endif // CHROME_BROWSER_CHROMEOS_CROS_MOCK_UPDATE_LIBRARY_H_
30
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/cros/cros_library.cc ('k') | chrome/browser/chromeos/cros/update_library.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698