| 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 #include "chrome/browser/extensions/dev_mode_bubble_delegate.h" | 5 #include "chrome/browser/extensions/dev_mode_bubble_delegate.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "base/metrics/histogram_macros.h" | 8 #include "base/metrics/histogram_macros.h" |
| 9 #include "chrome/browser/extensions/extension_action_manager.h" | 9 #include "chrome/browser/extensions/extension_action_manager.h" |
| 10 #include "chrome/browser/extensions/extension_service.h" | 10 #include "chrome/browser/extensions/extension_service.h" |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 } | 99 } |
| 100 | 100 |
| 101 const char* DevModeBubbleDelegate::GetKey() { | 101 const char* DevModeBubbleDelegate::GetKey() { |
| 102 return "DevModeBubbleDelegate"; | 102 return "DevModeBubbleDelegate"; |
| 103 } | 103 } |
| 104 | 104 |
| 105 bool DevModeBubbleDelegate::ClearProfileSetAfterAction() { | 105 bool DevModeBubbleDelegate::ClearProfileSetAfterAction() { |
| 106 return false; | 106 return false; |
| 107 } | 107 } |
| 108 | 108 |
| 109 bool DevModeBubbleDelegate::SupportsPolicyIndicator() { |
| 110 return false; |
| 111 } |
| 112 |
| 109 } // namespace extensions | 113 } // namespace extensions |
| OLD | NEW |