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

Side by Side Diff: chrome/browser/dom_ui/app_launcher_handler.cc

Issue 6086003: Cleanup: Remove unneeded includes of chrome_switches.h. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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) 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/dom_ui/app_launcher_handler.h" 5 #include "chrome/browser/dom_ui/app_launcher_handler.h"
6 6
7 #include <string>
8 #include <vector>
9
7 #include "app/animation.h" 10 #include "app/animation.h"
8 #include "base/metrics/histogram.h" 11 #include "base/metrics/histogram.h"
9 #include "base/string_number_conversions.h" 12 #include "base/string_number_conversions.h"
10 #include "base/string_split.h" 13 #include "base/string_split.h"
11 #include "base/string_util.h" 14 #include "base/string_util.h"
12 #include "base/utf_string_conversions.h" 15 #include "base/utf_string_conversions.h"
13 #include "base/values.h" 16 #include "base/values.h"
14 #include "chrome/browser/app_launched_animation.h" 17 #include "chrome/browser/app_launched_animation.h"
15 #include "chrome/browser/extensions/default_apps.h" 18 #include "chrome/browser/extensions/default_apps.h"
16 #include "chrome/browser/extensions/extension_prefs.h" 19 #include "chrome/browser/extensions/extension_prefs.h"
17 #include "chrome/browser/extensions/extension_service.h" 20 #include "chrome/browser/extensions/extension_service.h"
18 #include "chrome/browser/platform_util.h" 21 #include "chrome/browser/platform_util.h"
19 #include "chrome/browser/profiles/profile.h" 22 #include "chrome/browser/profiles/profile.h"
20 #include "chrome/browser/tab_contents/tab_contents.h" 23 #include "chrome/browser/tab_contents/tab_contents.h"
21 #include "chrome/browser/ui/browser.h" 24 #include "chrome/browser/ui/browser.h"
22 #include "chrome/browser/ui/browser_list.h" 25 #include "chrome/browser/ui/browser_list.h"
23 #include "chrome/browser/ui/browser_window.h" 26 #include "chrome/browser/ui/browser_window.h"
24 #include "chrome/common/chrome_switches.h"
25 #include "chrome/common/extensions/extension.h" 27 #include "chrome/common/extensions/extension.h"
26 #include "chrome/common/extensions/extension_constants.h" 28 #include "chrome/common/extensions/extension_constants.h"
27 #include "chrome/common/extensions/extension_icon_set.h" 29 #include "chrome/common/extensions/extension_icon_set.h"
28 #include "chrome/common/extensions/extension_resource.h" 30 #include "chrome/common/extensions/extension_resource.h"
29 #include "chrome/common/notification_service.h" 31 #include "chrome/common/notification_service.h"
30 #include "chrome/common/notification_type.h" 32 #include "chrome/common/notification_type.h"
31 #include "chrome/common/url_constants.h" 33 #include "chrome/common/url_constants.h"
32 #include "gfx/rect.h" 34 #include "gfx/rect.h"
33 #include "grit/browser_resources.h" 35 #include "grit/browser_resources.h"
34 #include "grit/generated_resources.h" 36 #include "grit/generated_resources.h"
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 // We make this check for the case of minimized windows, unit tests, etc. 413 // We make this check for the case of minimized windows, unit tests, etc.
412 if (platform_util::IsVisible(dom_ui_->tab_contents()->GetNativeView()) && 414 if (platform_util::IsVisible(dom_ui_->tab_contents()->GetNativeView()) &&
413 Animation::ShouldRenderRichAnimation()) { 415 Animation::ShouldRenderRichAnimation()) {
414 #if defined(OS_WIN) 416 #if defined(OS_WIN)
415 AppLaunchedAnimation::Show(extension, rect); 417 AppLaunchedAnimation::Show(extension, rect);
416 #else 418 #else
417 NOTIMPLEMENTED(); 419 NOTIMPLEMENTED();
418 #endif 420 #endif
419 } 421 }
420 } 422 }
OLDNEW
« no previous file with comments | « chrome/browser/debugger/devtools_window.cc ('k') | chrome/browser/dom_ui/most_visited_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698