| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/chrome_browser_parts_aura.h" | 5 #include "chrome/browser/chrome_browser_parts_aura.h" |
| 6 #include "chrome/browser/ui/views/aura/chrome_shell_delegate.h" | 6 #include "chrome/browser/ui/views/aura/chrome_shell_delegate.h" |
| 7 #include "ui/aura/desktop.h" | 7 #include "ui/aura/desktop.h" |
| 8 #include "ui/aura_shell/shell.h" | 8 #include "ui/aura_shell/shell.h" |
| 9 | 9 |
| 10 #if defined(OS_CHROMEOS) | 10 #if defined(OS_CHROMEOS) |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 // Shell takes ownership of ChromeShellDelegate. | 39 // Shell takes ownership of ChromeShellDelegate. |
| 40 aura_shell::Shell::CreateInstance(new ChromeShellDelegate); | 40 aura_shell::Shell::CreateInstance(new ChromeShellDelegate); |
| 41 } | 41 } |
| 42 | 42 |
| 43 bool ChromeBrowserPartsAura::MainMessageLoopRun(int* result_code) { | 43 bool ChromeBrowserPartsAura::MainMessageLoopRun(int* result_code) { |
| 44 return false; | 44 return false; |
| 45 } | 45 } |
| 46 | 46 |
| 47 void ChromeBrowserPartsAura::PostMainMessageLoopRun() { | 47 void ChromeBrowserPartsAura::PostMainMessageLoopRun() { |
| 48 } | 48 } |
| OLD | NEW |