Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Side by Side Diff: trunk/src/chrome/browser/accessibility/accessibility_extension_api.cc

Issue 102163002: Revert 238283 "Infobar system refactor." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | trunk/src/chrome/browser/autofill/autofill_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "chrome/browser/accessibility/accessibility_extension_api.h" 5 #include "chrome/browser/accessibility/accessibility_extension_api.h"
6 6
7 #include "base/json/json_writer.h" 7 #include "base/json/json_writer.h"
8 #include "base/strings/string_number_conversions.h" 8 #include "base/strings/string_number_conversions.h"
9 #include "base/values.h" 9 #include "base/values.h"
10 #include "chrome/browser/accessibility/accessibility_extension_api_constants.h" 10 #include "chrome/browser/accessibility/accessibility_extension_api_constants.h"
11 #include "chrome/browser/extensions/api/tabs/tabs_constants.h" 11 #include "chrome/browser/extensions/api/tabs/tabs_constants.h"
12 #include "chrome/browser/extensions/extension_host.h" 12 #include "chrome/browser/extensions/extension_host.h"
13 #include "chrome/browser/extensions/extension_service.h" 13 #include "chrome/browser/extensions/extension_service.h"
14 #include "chrome/browser/extensions/extension_system.h" 14 #include "chrome/browser/extensions/extension_system.h"
15 #include "chrome/browser/extensions/extension_tab_util.h" 15 #include "chrome/browser/extensions/extension_tab_util.h"
16 #include "chrome/browser/infobars/confirm_infobar_delegate.h" 16 #include "chrome/browser/infobars/confirm_infobar_delegate.h"
17 #include "chrome/browser/infobars/infobar.h" 17 #include "chrome/browser/infobars/infobar_delegate.h"
18 #include "chrome/browser/infobars/infobar_service.h" 18 #include "chrome/browser/infobars/infobar_service.h"
19 #include "chrome/browser/profiles/profile.h" 19 #include "chrome/browser/profiles/profile.h"
20 #include "chrome/common/extensions/api/experimental_accessibility.h" 20 #include "chrome/common/extensions/api/experimental_accessibility.h"
21 #include "content/public/browser/browser_accessibility_state.h" 21 #include "content/public/browser/browser_accessibility_state.h"
22 #include "extensions/browser/event_router.h" 22 #include "extensions/browser/event_router.h"
23 #include "extensions/browser/lazy_background_task_queue.h" 23 #include "extensions/browser/lazy_background_task_queue.h"
24 #include "extensions/common/error_utils.h" 24 #include "extensions/common/error_utils.h"
25 #include "extensions/common/manifest_handlers/background_info.h" 25 #include "extensions/common/manifest_handlers/background_info.h"
26 26
27 namespace keys = extension_accessibility_api_constants; 27 namespace keys = extension_accessibility_api_constants;
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 base::IntToString(tab_id)); 271 base::IntToString(tab_id));
272 return false; 272 return false;
273 } 273 }
274 274
275 ListValue* alerts_value = new ListValue; 275 ListValue* alerts_value = new ListValue;
276 276
277 InfoBarService* infobar_service = InfoBarService::FromWebContents(contents); 277 InfoBarService* infobar_service = InfoBarService::FromWebContents(contents);
278 for (size_t i = 0; i < infobar_service->infobar_count(); ++i) { 278 for (size_t i = 0; i < infobar_service->infobar_count(); ++i) {
279 // TODO(hashimoto): Make other kind of alerts available. crosbug.com/24281 279 // TODO(hashimoto): Make other kind of alerts available. crosbug.com/24281
280 ConfirmInfoBarDelegate* confirm_infobar_delegate = 280 ConfirmInfoBarDelegate* confirm_infobar_delegate =
281 infobar_service->infobar_at(i)->delegate()->AsConfirmInfoBarDelegate(); 281 infobar_service->infobar_at(i)->AsConfirmInfoBarDelegate();
282 if (confirm_infobar_delegate) { 282 if (confirm_infobar_delegate) {
283 DictionaryValue* alert_value = new DictionaryValue; 283 DictionaryValue* alert_value = new DictionaryValue;
284 const string16 message_text = confirm_infobar_delegate->GetMessageText(); 284 const string16 message_text = confirm_infobar_delegate->GetMessageText();
285 alert_value->SetString(keys::kMessageKey, message_text); 285 alert_value->SetString(keys::kMessageKey, message_text);
286 alerts_value->Append(alert_value); 286 alerts_value->Append(alert_value);
287 } 287 }
288 } 288 }
289 289
290 SetResult(alerts_value); 290 SetResult(alerts_value);
291 return true; 291 return true;
292 } 292 }
OLDNEW
« no previous file with comments | « no previous file | trunk/src/chrome/browser/autofill/autofill_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698