| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "chrome/browser/ui/extensions/extension_message_bubble_bridge.h" | 5 #include "chrome/browser/ui/extensions/extension_message_bubble_bridge.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "chrome/browser/extensions/extension_message_bubble_controller.h" | 9 #include "chrome/browser/extensions/extension_message_bubble_controller.h" |
| 10 | 10 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 break; | 65 break; |
| 66 } | 66 } |
| 67 case CLOSE_EXECUTE: | 67 case CLOSE_EXECUTE: |
| 68 controller_->OnBubbleAction(); | 68 controller_->OnBubbleAction(); |
| 69 break; | 69 break; |
| 70 case CLOSE_LEARN_MORE: | 70 case CLOSE_LEARN_MORE: |
| 71 controller_->OnLinkClicked(); | 71 controller_->OnLinkClicked(); |
| 72 break; | 72 break; |
| 73 } | 73 } |
| 74 } | 74 } |
| 75 | |
| 76 bool ExtensionMessageBubbleBridge::IsExtensionMessageBubble() { | |
| 77 return true; | |
| 78 } | |
| OLD | NEW |