| 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/chromeos/usb_mount_observer.h" | 5 #include "chrome/browser/chromeos/usb_mount_observer.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/singleton.h" | 8 #include "base/singleton.h" |
| 9 #include "chrome/browser/dom_ui/filebrowse_ui.h" | 9 #include "chrome/browser/dom_ui/filebrowse_ui.h" |
| 10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| 11 #include "chrome/browser/tab_contents/tab_contents.h" | 11 #include "chrome/browser/tab_contents/tab_contents.h" |
| 12 #include "chrome/browser/ui/browser.h" | 12 #include "chrome/browser/ui/browser.h" |
| 13 #include "chrome/browser/ui/browser_list.h" | 13 #include "chrome/browser/ui/browser_list.h" |
| 14 #include "chrome/browser/ui/browser_window.h" | 14 #include "chrome/browser/ui/browser_window.h" |
| 15 #include "chrome/common/chrome_switches.h" | 15 #include "chrome/common/chrome_switches.h" |
| 16 #include "chrome/common/url_constants.h" | 16 #include "chrome/common/url_constants.h" |
| 17 | 17 |
| 18 namespace chromeos { | 18 namespace chromeos { |
| 19 | 19 |
| 20 const char* kFilebrowseURLHash = "chrome://filebrowse#"; | 20 const char* kFilebrowseURLHash = "chrome://filebrowse#"; |
| 21 const char* kFilebrowseScanning = "scanningdevice"; | 21 const char* kFilebrowseScanning = "scanningdevice"; |
| 22 const int kPopupLeft = 0; | 22 const int kPopupLeft = 0; |
| 23 const int kPopupTop = 0; | 23 const int kPopupTop = 0; |
| 24 const int kPopupWidth = 250; | 24 const int kPopupWidth = 250; |
| 25 const int kPopupHeight = 300; | 25 const int kPopupHeight = 300; |
| 26 | 26 |
| 27 // static | 27 // static |
| 28 USBMountObserver* USBMountObserver::Get() { | 28 USBMountObserver* USBMountObserver::GetInstance() { |
| 29 return Singleton<USBMountObserver>::get(); | 29 return Singleton<USBMountObserver>::get(); |
| 30 } | 30 } |
| 31 | 31 |
| 32 void USBMountObserver::Observe(NotificationType type, | 32 void USBMountObserver::Observe(NotificationType type, |
| 33 const NotificationSource& source, | 33 const NotificationSource& source, |
| 34 const NotificationDetails& details) { | 34 const NotificationDetails& details) { |
| 35 DCHECK(type == NotificationType::BROWSER_CLOSED); | 35 DCHECK(type == NotificationType::BROWSER_CLOSED); |
| 36 for (BrowserIterator i = browsers_.begin(); i != browsers_.end(); | 36 for (BrowserIterator i = browsers_.begin(); i != browsers_.end(); |
| 37 ++i) { | 37 ++i) { |
| 38 if (Source<Browser>(source).ptr() == i->browser) { | 38 if (Source<Browser>(source).ptr() == i->browser) { |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 } | 195 } |
| 196 } | 196 } |
| 197 for (size_t x = 0; x < close_these.size(); x++) { | 197 for (size_t x = 0; x < close_these.size(); x++) { |
| 198 if (close_these[x]->window()) { | 198 if (close_these[x]->window()) { |
| 199 close_these[x]->window()->Close(); | 199 close_these[x]->window()->Close(); |
| 200 } | 200 } |
| 201 } | 201 } |
| 202 } | 202 } |
| 203 | 203 |
| 204 } // namespace chromeos | 204 } // namespace chromeos |
| OLD | NEW |