| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/ui/ash/chrome_shell_content_state.h" | |
| 6 | |
| 7 content::BrowserContext* ChromeShellContentState::GetBrowserContextByIndex( | |
| 8 ash::UserIndex index) { | |
| 9 return nullptr; | |
| 10 } | |
| 11 | |
| 12 content::BrowserContext* ChromeShellContentState::GetBrowserContextForWindow( | |
| 13 aura::Window* window) { | |
| 14 return nullptr; | |
| 15 } | |
| 16 | |
| 17 content::BrowserContext* | |
| 18 ChromeShellContentState::GetUserPresentingBrowserContextForWindow( | |
| 19 aura::Window* window) { | |
| 20 return nullptr; | |
| 21 } | |
| OLD | NEW |