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

Unified Diff: chrome/browser/policy/mock_configuration_policy_reader.h

Issue 7585036: First CL for the about:policy page. This only implements the policy section of the page. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: . Created 9 years, 4 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
Index: chrome/browser/policy/mock_configuration_policy_reader.h
diff --git a/chrome/browser/policy/mock_configuration_policy_reader.h b/chrome/browser/policy/mock_configuration_policy_reader.h
new file mode 100644
index 0000000000000000000000000000000000000000..f94e4a326a82a26ed42c29ee38f21cbcafe339c6
--- /dev/null
+++ b/chrome/browser/policy/mock_configuration_policy_reader.h
@@ -0,0 +1,28 @@
+// Copyright (c) 2011 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_POLICY_MOCK_CONFIGURATION_POLICY_READER_H_
+#define CHROME_BROWSER_POLICY_MOCK_CONFIGURATION_POLICY_READER_H_
+#pragma once
+
+#include "chrome/browser/policy/configuration_policy_reader.h"
+
+#include "base/values.h"
+#include "testing/gmock/include/gmock/gmock.h"
+
+namespace policy {
+
+// Mock ConfigurationPolicyReader implementation.
+class MockConfigurationPolicyReader : public ConfigurationPolicyReader {
+ public:
+ MockConfigurationPolicyReader();
+ virtual ~MockConfigurationPolicyReader();
+
+ MOCK_CONST_METHOD1(GetPolicyStatus,
+ DictionaryValue*(ConfigurationPolicyType policy));
+};
+
+} // namespace policy
+
+#endif // CHROME_BROWSER_POLICY_MOCK_CONFIGURATION_POLICY_READER_H_

Powered by Google App Engine
This is Rietveld 408576698