| 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_EXTENSIONS_EXTENSION_ERROR_UI_DEFAULT_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_ERROR_UI_DEFAULT_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_ERROR_UI_DEFAULT_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_ERROR_UI_DEFAULT_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "chrome/browser/extensions/extension_error_ui.h" | 10 #include "chrome/browser/extensions/extension_error_ui.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 50 |
| 51 DISALLOW_COPY_AND_ASSIGN(ExtensionGlobalError); | 51 DISALLOW_COPY_AND_ASSIGN(ExtensionGlobalError); |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 // The profile associated with this error. | 54 // The profile associated with this error. |
| 55 Profile* profile_; | 55 Profile* profile_; |
| 56 | 56 |
| 57 // The browser the bubble view was shown into. | 57 // The browser the bubble view was shown into. |
| 58 Browser* browser_; | 58 Browser* browser_; |
| 59 | 59 |
| 60 scoped_ptr<ExtensionGlobalError> global_error_; | 60 std::unique_ptr<ExtensionGlobalError> global_error_; |
| 61 | 61 |
| 62 DISALLOW_COPY_AND_ASSIGN(ExtensionErrorUIDefault); | 62 DISALLOW_COPY_AND_ASSIGN(ExtensionErrorUIDefault); |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace extensions | 65 } // namespace extensions |
| 66 | 66 |
| 67 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ERROR_UI_DEFAULT_H_ | 67 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ERROR_UI_DEFAULT_H_ |
| OLD | NEW |