| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "content/shell/browser/shell_content_browser_client.h" | 5 #include "content/shell/browser/shell_content_browser_client.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> |
| 9 | 10 |
| 10 #include "base/base_switches.h" | 11 #include "base/base_switches.h" |
| 11 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 12 #include "base/files/file.h" | 13 #include "base/files/file.h" |
| 13 #include "base/files/file_util.h" | 14 #include "base/files/file_util.h" |
| 14 #include "base/json/json_reader.h" | 15 #include "base/json/json_reader.h" |
| 15 #include "base/macros.h" | 16 #include "base/macros.h" |
| 16 #include "base/memory/ptr_util.h" | 17 #include "base/memory/ptr_util.h" |
| 17 #include "base/path_service.h" | 18 #include "base/path_service.h" |
| 18 #include "base/strings/pattern.h" | 19 #include "base/strings/pattern.h" |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 ShellBrowserContext* ShellContentBrowserClient::browser_context() { | 412 ShellBrowserContext* ShellContentBrowserClient::browser_context() { |
| 412 return shell_browser_main_parts_->browser_context(); | 413 return shell_browser_main_parts_->browser_context(); |
| 413 } | 414 } |
| 414 | 415 |
| 415 ShellBrowserContext* | 416 ShellBrowserContext* |
| 416 ShellContentBrowserClient::off_the_record_browser_context() { | 417 ShellContentBrowserClient::off_the_record_browser_context() { |
| 417 return shell_browser_main_parts_->off_the_record_browser_context(); | 418 return shell_browser_main_parts_->off_the_record_browser_context(); |
| 418 } | 419 } |
| 419 | 420 |
| 420 } // namespace content | 421 } // namespace content |
| OLD | NEW |