| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_DEV_MODE_BUBBLE_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_DEV_MODE_BUBBLE_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_DEV_MODE_BUBBLE_DELEGATE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_DEV_MODE_BUBBLE_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 base::string16 GetActionButtonLabel() const override; | 37 base::string16 GetActionButtonLabel() const override; |
| 38 base::string16 GetDismissButtonLabel() const override; | 38 base::string16 GetDismissButtonLabel() const override; |
| 39 bool ShouldCloseOnDeactivate() const override; | 39 bool ShouldCloseOnDeactivate() const override; |
| 40 bool ShouldShowExtensionList() const override; | 40 bool ShouldShowExtensionList() const override; |
| 41 bool ShouldHighlightExtensions() const override; | 41 bool ShouldHighlightExtensions() const override; |
| 42 bool ShouldLimitToEnabledExtensions() const override; | 42 bool ShouldLimitToEnabledExtensions() const override; |
| 43 void LogExtensionCount(size_t count) override; | 43 void LogExtensionCount(size_t count) override; |
| 44 void LogAction(ExtensionMessageBubbleController::BubbleAction) override; | 44 void LogAction(ExtensionMessageBubbleController::BubbleAction) override; |
| 45 const char* GetKey() override; | 45 const char* GetKey() override; |
| 46 bool ClearProfileSetAfterAction() override; | 46 bool ClearProfileSetAfterAction() override; |
| 47 bool SupportsPolicyIndicator() override; |
| 47 | 48 |
| 48 private: | 49 private: |
| 49 DISALLOW_COPY_AND_ASSIGN(DevModeBubbleDelegate); | 50 DISALLOW_COPY_AND_ASSIGN(DevModeBubbleDelegate); |
| 50 }; | 51 }; |
| 51 | 52 |
| 52 } // namespace extensions | 53 } // namespace extensions |
| 53 | 54 |
| 54 #endif // CHROME_BROWSER_EXTENSIONS_DEV_MODE_BUBBLE_DELEGATE_H_ | 55 #endif // CHROME_BROWSER_EXTENSIONS_DEV_MODE_BUBBLE_DELEGATE_H_ |
| OLD | NEW |