OLD | NEW |
(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_MOCK_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_ |
| 6 #define CHROME_BROWSER_MOCK_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_ |
| 7 #pragma once |
| 8 |
| 9 #include <vector> |
| 10 |
| 11 #include "chrome/browser/plugin_exceptions_table_model.h" |
| 12 |
| 13 class MockPluginExceptionsTableModel : public PluginExceptionsTableModel { |
| 14 public: |
| 15 MockPluginExceptionsTableModel(HostContentSettingsMap* map, |
| 16 HostContentSettingsMap* otr_map) |
| 17 : PluginExceptionsTableModel(map, otr_map) {} |
| 18 virtual ~MockPluginExceptionsTableModel() {} |
| 19 |
| 20 void set_plugins(const std::vector<WebPluginInfo>& plugins); |
| 21 |
| 22 protected: |
| 23 virtual void GetPlugins(std::vector<WebPluginInfo>* plugins); |
| 24 |
| 25 private: |
| 26 std::vector<WebPluginInfo> plugins_; |
| 27 }; |
| 28 |
| 29 #endif // CHROME_BROWSER_MOCK_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_ |
OLD | NEW |