OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/extension_toolbar_model.h" | 5 #include "chrome/browser/extensions/extension_toolbar_model.h" |
6 | 6 |
7 #include "chrome/browser/extensions/extension_prefs.h" | 7 #include "chrome/browser/extensions/extension_prefs.h" |
8 #include "chrome/browser/extensions/extensions_service.h" | 8 #include "chrome/browser/extensions/extensions_service.h" |
9 #include "chrome/browser/prefs/pref_service.h" | 9 #include "chrome/browser/prefs/pref_service.h" |
10 #include "chrome/browser/profile.h" | 10 #include "chrome/browser/profile.h" |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 } | 83 } |
84 | 84 |
85 void ExtensionToolbarModel::Observe(NotificationType type, | 85 void ExtensionToolbarModel::Observe(NotificationType type, |
86 const NotificationSource& source, | 86 const NotificationSource& source, |
87 const NotificationDetails& details) { | 87 const NotificationDetails& details) { |
88 if (type == NotificationType::EXTENSIONS_READY) { | 88 if (type == NotificationType::EXTENSIONS_READY) { |
89 InitializeExtensionList(); | 89 InitializeExtensionList(); |
90 return; | 90 return; |
91 } | 91 } |
92 | 92 |
93 if (!service_->is_ready()) | |
94 return; | |
95 | |
96 const Extension* extension = Details<const Extension>(details).ptr(); | 93 const Extension* extension = Details<const Extension>(details).ptr(); |
97 if (type == NotificationType::EXTENSION_LOADED) { | 94 if (type == NotificationType::EXTENSION_LOADED) { |
98 AddExtension(extension); | 95 AddExtension(extension); |
99 } else if (type == NotificationType::EXTENSION_UNLOADED || | 96 } else if (type == NotificationType::EXTENSION_UNLOADED || |
100 type == NotificationType::EXTENSION_UNLOADED_DISABLED) { | 97 type == NotificationType::EXTENSION_UNLOADED_DISABLED) { |
101 RemoveExtension(extension); | 98 RemoveExtension(extension); |
102 } else { | 99 } else { |
103 NOTREACHED() << "Received unexpected notification"; | 100 NOTREACHED() << "Received unexpected notification"; |
104 } | 101 } |
105 } | 102 } |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 } | 141 } |
145 | 142 |
146 // Combine the currently enabled extensions that have browser actions (which | 143 // Combine the currently enabled extensions that have browser actions (which |
147 // we get from the ExtensionsService) with the ordering we get from the | 144 // we get from the ExtensionsService) with the ordering we get from the |
148 // pref service. For robustness we use a somewhat inefficient process: | 145 // pref service. For robustness we use a somewhat inefficient process: |
149 // 1. Create a vector of extensions sorted by their pref values. This vector may | 146 // 1. Create a vector of extensions sorted by their pref values. This vector may |
150 // have holes. | 147 // have holes. |
151 // 2. Create a vector of extensions that did not have a pref value. | 148 // 2. Create a vector of extensions that did not have a pref value. |
152 // 3. Remove holes from the sorted vector and append the unsorted vector. | 149 // 3. Remove holes from the sorted vector and append the unsorted vector. |
153 void ExtensionToolbarModel::InitializeExtensionList() { | 150 void ExtensionToolbarModel::InitializeExtensionList() { |
154 DCHECK(service_->is_ready()); | |
155 | |
156 std::vector<std::string> pref_order = service_->extension_prefs()-> | 151 std::vector<std::string> pref_order = service_->extension_prefs()-> |
157 GetToolbarOrder(); | 152 GetToolbarOrder(); |
158 // Items that have a pref for their position. | 153 // Items that have a pref for their position. |
159 ExtensionList sorted; | 154 ExtensionList sorted; |
160 sorted.resize(pref_order.size(), NULL); | 155 sorted.resize(pref_order.size(), NULL); |
161 // The items that don't have a pref for their position. | 156 // The items that don't have a pref for their position. |
162 ExtensionList unsorted; | 157 ExtensionList unsorted; |
163 | 158 |
164 // Create the lists. | 159 // Create the lists. |
165 for (size_t i = 0; i < service_->extensions()->size(); ++i) { | 160 for (size_t i = 0; i < service_->extensions()->size(); ++i) { |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 int incognito_index = 0, i = 0; | 225 int incognito_index = 0, i = 0; |
231 for (ExtensionList::iterator iter = begin(); iter != end(); | 226 for (ExtensionList::iterator iter = begin(); iter != end(); |
232 ++iter, ++i) { | 227 ++iter, ++i) { |
233 if (original_index == i) | 228 if (original_index == i) |
234 break; | 229 break; |
235 if (service_->IsIncognitoEnabled(*iter)) | 230 if (service_->IsIncognitoEnabled(*iter)) |
236 ++incognito_index; | 231 ++incognito_index; |
237 } | 232 } |
238 return incognito_index; | 233 return incognito_index; |
239 } | 234 } |
OLD | NEW |