| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PROTECTOR_SETTINGS_CHANGE_GLOBAL_ERROR_H_ | 5 #ifndef CHROME_BROWSER_PROTECTOR_SETTINGS_CHANGE_GLOBAL_ERROR_H_ |
| 6 #define CHROME_BROWSER_PROTECTOR_SETTINGS_CHANGE_GLOBAL_ERROR_H_ | 6 #define CHROME_BROWSER_PROTECTOR_SETTINGS_CHANGE_GLOBAL_ERROR_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "chrome/app/chrome_command_ids.h" | 12 #include "chrome/app/chrome_command_ids.h" |
| 13 #include "chrome/browser/protector/base_setting_change.h" | 13 #include "chrome/browser/protector/base_setting_change.h" |
| 14 #include "chrome/browser/ui/browser_list.h" | 14 #include "chrome/browser/ui/browser_list.h" |
| 15 #include "chrome/browser/ui/global_error.h" | 15 #include "chrome/browser/ui/global_error/global_error.h" |
| 16 | 16 |
| 17 class Browser; | 17 class Browser; |
| 18 class Profile; | 18 class Profile; |
| 19 | 19 |
| 20 namespace protector { | 20 namespace protector { |
| 21 | 21 |
| 22 class BaseSettingChange; | 22 class BaseSettingChange; |
| 23 class SettingsChangeGlobalErrorDelegate; | 23 class SettingsChangeGlobalErrorDelegate; |
| 24 | 24 |
| 25 // Global error about unwanted settings changes. | 25 // Global error about unwanted settings changes. |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 // Menu command ID assigned to |this| from the pool of available IDs. | 97 // Menu command ID assigned to |this| from the pool of available IDs. |
| 98 int menu_id_; | 98 int menu_id_; |
| 99 | 99 |
| 100 DISALLOW_COPY_AND_ASSIGN(SettingsChangeGlobalError); | 100 DISALLOW_COPY_AND_ASSIGN(SettingsChangeGlobalError); |
| 101 }; | 101 }; |
| 102 | 102 |
| 103 } // namespace protector | 103 } // namespace protector |
| 104 | 104 |
| 105 #endif // CHROME_BROWSER_PROTECTOR_SETTINGS_CHANGE_GLOBAL_ERROR_H_ | 105 #endif // CHROME_BROWSER_PROTECTOR_SETTINGS_CHANGE_GLOBAL_ERROR_H_ |
| OLD | NEW |