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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/mock_update_library.h
diff --git a/chrome/browser/chromeos/cros/mock_update_library.h b/chrome/browser/chromeos/cros/mock_update_library.h
new file mode 100644
index 0000000000000000000000000000000000000000..4e1e7f6d9281fd5461aae3a79fe3ac1debb6040f
--- /dev/null
+++ b/chrome/browser/chromeos/cros/mock_update_library.h
@@ -0,0 +1,30 @@
+// Copyright (c) 2010 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 CHROME_BROWSER_CHROMEOS_CROS_MOCK_UPDATE_LIBRARY_H_
+#define CHROME_BROWSER_CHROMEOS_CROS_MOCK_UPDATE_LIBRARY_H_
+
+#include "base/observer_list.h"
+#include "chrome/browser/chromeos/cros/update_library.h"
+#include "testing/gmock/include/gmock/gmock.h"
+
+namespace chromeos {
+
+class MockUpdateLibrary : public UpdateLibrary {
+ public:
+ MockUpdateLibrary() {}
+ virtual ~MockUpdateLibrary() {}
+ MOCK_METHOD1(AddObserver, void(Observer*)); // NOLINT
+ MOCK_METHOD1(RemoveObserver, void(Observer*)); // NOLINT
+
+ MOCK_CONST_METHOD0(status, const Status&(void));
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(MockUpdateLibrary);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_CROS_MOCK_UPDATE_LIBRARY_H_
+
« 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