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

Side by Side Diff: chrome/browser/chromeos/accessibility/accessibility_manager.cc

Issue 18640003: Updates some includes of chrome_notification_types.h (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 months 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
OLDNEW
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/chromeos/accessibility/accessibility_manager.h" 5 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h"
6 6
7 #include "ash/high_contrast/high_contrast_controller.h" 7 #include "ash/high_contrast/high_contrast_controller.h"
8 #include "ash/shell.h" 8 #include "ash/shell.h"
9 #include "ash/system/tray/system_tray_notifier.h" 9 #include "ash/system/tray/system_tray_notifier.h"
10 #include "ash/wm/event_rewriter_event_filter.h" 10 #include "ash/wm/event_rewriter_event_filter.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/memory/singleton.h" 12 #include "base/memory/singleton.h"
13 #include "base/metrics/histogram.h" 13 #include "base/metrics/histogram.h"
14 #include "base/prefs/pref_member.h" 14 #include "base/prefs/pref_member.h"
15 #include "base/prefs/pref_service.h" 15 #include "base/prefs/pref_service.h"
16 #include "base/values.h" 16 #include "base/values.h"
17 #include "chrome/browser/accessibility/accessibility_extension_api.h" 17 #include "chrome/browser/accessibility/accessibility_extension_api.h"
18 #include "chrome/browser/browser_process.h" 18 #include "chrome/browser/browser_process.h"
19 #include "chrome/browser/chrome_notification_types.h"
19 #include "chrome/browser/chromeos/accessibility/magnification_manager.h" 20 #include "chrome/browser/chromeos/accessibility/magnification_manager.h"
20 #include "chrome/browser/chromeos/login/login_display_host.h" 21 #include "chrome/browser/chromeos/login/login_display_host.h"
21 #include "chrome/browser/chromeos/login/login_display_host_impl.h" 22 #include "chrome/browser/chromeos/login/login_display_host_impl.h"
22 #include "chrome/browser/chromeos/login/screen_locker.h" 23 #include "chrome/browser/chromeos/login/screen_locker.h"
23 #include "chrome/browser/chromeos/login/webui_login_view.h" 24 #include "chrome/browser/chromeos/login/webui_login_view.h"
24 #include "chrome/browser/chromeos/profiles/profile_helper.h" 25 #include "chrome/browser/chromeos/profiles/profile_helper.h"
25 #include "chrome/browser/extensions/component_loader.h" 26 #include "chrome/browser/extensions/component_loader.h"
26 #include "chrome/browser/extensions/extension_service.h" 27 #include "chrome/browser/extensions/extension_service.h"
27 #include "chrome/browser/extensions/extension_system.h" 28 #include "chrome/browser/extensions/extension_system.h"
28 #include "chrome/browser/profiles/profile.h" 29 #include "chrome/browser/profiles/profile.h"
29 #include "chrome/browser/profiles/profile_manager.h" 30 #include "chrome/browser/profiles/profile_manager.h"
30 #include "chrome/browser/speech/tts_controller.h" 31 #include "chrome/browser/speech/tts_controller.h"
31 #include "chrome/common/chrome_notification_types.h"
32 #include "chrome/common/extensions/extension.h" 32 #include "chrome/common/extensions/extension.h"
33 #include "chrome/common/extensions/extension_messages.h" 33 #include "chrome/common/extensions/extension_messages.h"
34 #include "chrome/common/extensions/manifest_handlers/content_scripts_handler.h" 34 #include "chrome/common/extensions/manifest_handlers/content_scripts_handler.h"
35 #include "chrome/common/pref_names.h" 35 #include "chrome/common/pref_names.h"
36 #include "chromeos/login/login_state.h" 36 #include "chromeos/login/login_state.h"
37 #include "content/public/browser/browser_accessibility_state.h" 37 #include "content/public/browser/browser_accessibility_state.h"
38 #include "content/public/browser/notification_details.h" 38 #include "content/public/browser/notification_details.h"
39 #include "content/public/browser/notification_service.h" 39 #include "content/public/browser/notification_service.h"
40 #include "content/public/browser/notification_source.h" 40 #include "content/public/browser/notification_source.h"
41 #include "content/public/browser/render_process_host.h" 41 #include "content/public/browser/render_process_host.h"
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 // Update |profile_| when exiting a session or shutting down. 579 // Update |profile_| when exiting a session or shutting down.
580 Profile* profile = content::Source<Profile>(source).ptr(); 580 Profile* profile = content::Source<Profile>(source).ptr();
581 if (profile_ == profile) 581 if (profile_ == profile)
582 SetProfile(NULL); 582 SetProfile(NULL);
583 break; 583 break;
584 } 584 }
585 } 585 }
586 } 586 }
587 587
588 } // namespace chromeos 588 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698