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

Side by Side Diff: chrome/browser/ui/panels/panel_manager.cc

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert version_info::Channel to a "class enum" Created 5 years, 4 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
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/ui/panels/panel_manager.h" 5 #include "chrome/browser/ui/panels/panel_manager.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 wm_type != ui::WM_ICE_WM && 115 wm_type != ui::WM_ICE_WM &&
116 wm_type != ui::WM_KWIN && 116 wm_type != ui::WM_KWIN &&
117 wm_type != ui::WM_METACITY && 117 wm_type != ui::WM_METACITY &&
118 wm_type != ui::WM_MUFFIN && 118 wm_type != ui::WM_MUFFIN &&
119 wm_type != ui::WM_MUTTER && 119 wm_type != ui::WM_MUTTER &&
120 wm_type != ui::WM_XFWM4) { 120 wm_type != ui::WM_XFWM4) {
121 return false; 121 return false;
122 } 122 }
123 #endif // USE_X11 && !OS_CHROMEOS 123 #endif // USE_X11 && !OS_CHROMEOS
124 124
125 chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel(); 125 version_info::Channel channel = chrome::VersionInfo::GetChannel();
126 if (channel == chrome::VersionInfo::CHANNEL_STABLE || 126 if (channel == version_info::Channel::STABLE ||
127 channel == chrome::VersionInfo::CHANNEL_BETA) { 127 channel == version_info::Channel::BETA) {
128 return base::CommandLine::ForCurrentProcess()->HasSwitch( 128 return base::CommandLine::ForCurrentProcess()->HasSwitch(
129 switches::kEnablePanels) || 129 switches::kEnablePanels) ||
130 extension_id == std::string("nckgahadagoaajjgafhacjanaoiihapd") || 130 extension_id == std::string("nckgahadagoaajjgafhacjanaoiihapd") ||
131 extension_id == std::string("ljclpkphhpbpinifbeabbhlfddcpfdde") || 131 extension_id == std::string("ljclpkphhpbpinifbeabbhlfddcpfdde") ||
132 extension_id == std::string("ppleadejekpmccmnpjdimmlfljlkdfej") || 132 extension_id == std::string("ppleadejekpmccmnpjdimmlfljlkdfej") ||
133 extension_id == std::string("eggnbpckecmjlblplehfpjjdhhidfdoj"); 133 extension_id == std::string("eggnbpckecmjlblplehfpjjdhhidfdoj");
134 } 134 }
135 135
136 return true; 136 return true;
137 } 137 }
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
563 void PanelManager::SetMouseWatcher(PanelMouseWatcher* watcher) { 563 void PanelManager::SetMouseWatcher(PanelMouseWatcher* watcher) {
564 panel_mouse_watcher_.reset(watcher); 564 panel_mouse_watcher_.reset(watcher);
565 } 565 }
566 566
567 void PanelManager::OnPanelAnimationEnded(Panel* panel) { 567 void PanelManager::OnPanelAnimationEnded(Panel* panel) {
568 content::NotificationService::current()->Notify( 568 content::NotificationService::current()->Notify(
569 chrome::NOTIFICATION_PANEL_BOUNDS_ANIMATIONS_FINISHED, 569 chrome::NOTIFICATION_PANEL_BOUNDS_ANIMATIONS_FINISHED,
570 content::Source<Panel>(panel), 570 content::Source<Panel>(panel),
571 content::NotificationService::NoDetails()); 571 content::NotificationService::NoDetails());
572 } 572 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/hung_plugin_tab_helper.cc ('k') | chrome/browser/ui/views/app_list/win/app_list_service_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698