| Index: chrome/browser/chrome_content_browser_client.cc
|
| ===================================================================
|
| --- chrome/browser/chrome_content_browser_client.cc (revision 161449)
|
| +++ chrome/browser/chrome_content_browser_client.cc (working copy)
|
| @@ -75,6 +75,7 @@
|
| #include "chrome/browser/view_type_utils.h"
|
| #include "chrome/common/child_process_logging.h"
|
| #include "chrome/common/chrome_constants.h"
|
| +#include "chrome/common/chrome_paths.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/extensions/extension.h"
|
| #include "chrome/common/extensions/extension_process_policy.h"
|
| @@ -1745,6 +1746,12 @@
|
| switches::kPpapiFlashInProcess);
|
| }
|
|
|
| +FilePath ChromeContentBrowserClient::GetHyphenDictionaryDirectory() {
|
| + FilePath directory;
|
| + PathService::Get(chrome::DIR_APP_DICTIONARIES, &directory);
|
| + return directory.Append(FILE_PATH_LITERAL("Hyphen"));
|
| +}
|
| +
|
| #if defined(OS_POSIX) && !defined(OS_MACOSX)
|
| void ChromeContentBrowserClient::GetAdditionalMappedFilesForChildProcess(
|
| const CommandLine& command_line,
|
|
|