| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_ | 5 #ifndef CHROME_BROWSER_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_ |
| 6 #define CHROME_BROWSER_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_ | 6 #define CHROME_BROWSER_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 | 10 |
| 11 #include "chrome/browser/host_content_settings_map.h" | 11 #include "chrome/browser/content_settings/host_content_settings_map.h" |
| 12 #include "chrome/browser/remove_rows_table_model.h" | 12 #include "chrome/browser/remove_rows_table_model.h" |
| 13 #include "chrome/common/notification_observer.h" | 13 #include "chrome/common/notification_observer.h" |
| 14 #include "webkit/glue/plugins/plugin_list.h" | 14 #include "webkit/glue/plugins/plugin_list.h" |
| 15 | 15 |
| 16 namespace plugin_test_internal { | 16 namespace plugin_test_internal { |
| 17 class PluginExceptionsTableModelTest; | 17 class PluginExceptionsTableModelTest; |
| 18 } | 18 } |
| 19 struct WebPluginInfo; | 19 struct WebPluginInfo; |
| 20 | 20 |
| 21 class PluginExceptionsTableModel : public RemoveRowsTableModel, | 21 class PluginExceptionsTableModel : public RemoveRowsTableModel, |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 TableModel::Groups groups_; | 73 TableModel::Groups groups_; |
| 74 | 74 |
| 75 NotificationRegistrar registrar_; | 75 NotificationRegistrar registrar_; |
| 76 bool updates_disabled_; | 76 bool updates_disabled_; |
| 77 TableModelObserver* observer_; | 77 TableModelObserver* observer_; |
| 78 | 78 |
| 79 DISALLOW_COPY_AND_ASSIGN(PluginExceptionsTableModel); | 79 DISALLOW_COPY_AND_ASSIGN(PluginExceptionsTableModel); |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 #endif // CHROME_BROWSER_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_ | 82 #endif // CHROME_BROWSER_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_ |
| OLD | NEW |