OLD | NEW |
---|---|
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/extensions/shell_window.h" | 5 #include "chrome/browser/ui/extensions/shell_window.h" |
6 | 6 |
7 #include "chrome/browser/extensions/extension_process_manager.h" | 7 #include "chrome/browser/extensions/extension_process_manager.h" |
8 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
9 #include "chrome/common/chrome_notification_types.h" | 9 #include "chrome/common/chrome_notification_types.h" |
10 #include "chrome/common/extensions/extension.h" | 10 #include "chrome/common/extensions/extension.h" |
(...skipping 28 matching lines...) Expand all Loading... | |
39 DCHECK(manager); | 39 DCHECK(manager); |
40 if (!manager) | 40 if (!manager) |
41 return NULL; | 41 return NULL; |
42 | 42 |
43 ExtensionHost* host = manager->CreateShellHost(extension, url); | 43 ExtensionHost* host = manager->CreateShellHost(extension, url); |
44 // CHECK host so that non-GTK platform compilers don't complain about unused | 44 // CHECK host so that non-GTK platform compilers don't complain about unused |
45 // variables. | 45 // variables. |
46 // TODO(mihaip): remove when ShellWindow has been implemented everywhere. | 46 // TODO(mihaip): remove when ShellWindow has been implemented everywhere. |
47 CHECK(host); | 47 CHECK(host); |
48 | 48 |
49 #if defined(TOOLKIT_GTK) | 49 #if defined(TOOLKIT_GTK) | defined(TOOLKIT_VIEWS) |
Ben Goodger (Google)
2012/01/12 23:53:57
double pipe
jeremya
2012/01/12 23:58:51
Done.
| |
50 // This object will delete itself when the window is closed. | 50 // This object will delete itself when the window is closed. |
51 // TODO(mihaip): remove the #if block when ShellWindow has been implemented | 51 // TODO(mihaip): remove the #if block when ShellWindow has been implemented |
52 // everywhere. | 52 // everywhere. |
53 return ShellWindow::CreateShellWindow(host); | 53 return ShellWindow::CreateShellWindow(host); |
54 #endif | 54 #endif |
55 | 55 |
56 return NULL; | 56 return NULL; |
57 } | 57 } |
58 | 58 |
59 void ShellWindow::Observe(int type, | 59 void ShellWindow::Observe(int type, |
(...skipping 13 matching lines...) Expand all Loading... | |
73 Close(); | 73 Close(); |
74 break; | 74 break; |
75 } | 75 } |
76 case content::NOTIFICATION_APP_TERMINATING: | 76 case content::NOTIFICATION_APP_TERMINATING: |
77 Close(); | 77 Close(); |
78 break; | 78 break; |
79 default: | 79 default: |
80 NOTREACHED() << "Received unexpected notification"; | 80 NOTREACHED() << "Received unexpected notification"; |
81 } | 81 } |
82 } | 82 } |
OLD | NEW |