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 "android_webview/browser/aw_browser_main_parts.h" | 5 #include "android_webview/browser/aw_browser_main_parts.h" |
6 | 6 |
7 #include "android_webview/browser/aw_browser_context.h" | 7 #include "android_webview/browser/aw_browser_context.h" |
8 #include "android_webview/browser/aw_result_codes.h" | 8 #include "android_webview/browser/aw_result_codes.h" |
9 #include "base/android/build_info.h" | 9 #include "base/android/build_info.h" |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 ui::ResourceBundle::GetSharedInstance().AddDataPackFromPath( | 66 ui::ResourceBundle::GetSharedInstance().AddDataPackFromPath( |
67 pak_path.AppendASCII("webviewchromium_strings.pak"), | 67 pak_path.AppendASCII("webviewchromium_strings.pak"), |
68 ui::SCALE_FACTOR_NONE); | 68 ui::SCALE_FACTOR_NONE); |
69 ui::ResourceBundle::GetSharedInstance().AddDataPackFromPath( | 69 ui::ResourceBundle::GetSharedInstance().AddDataPackFromPath( |
70 pak_path.AppendASCII("webviewchromium.pak"), | 70 pak_path.AppendASCII("webviewchromium.pak"), |
71 ui::SCALE_FACTOR_NONE); | 71 ui::SCALE_FACTOR_NONE); |
72 | 72 |
73 return content::RESULT_CODE_NORMAL_EXIT; | 73 return content::RESULT_CODE_NORMAL_EXIT; |
74 } | 74 } |
75 | 75 |
| 76 void AwBrowserMainParts::PreMainMessageLoopRun() { |
| 77 browser_context_->PreMainMessageLoopRun(); |
| 78 } |
| 79 |
76 bool AwBrowserMainParts::MainMessageLoopRun(int* result_code) { | 80 bool AwBrowserMainParts::MainMessageLoopRun(int* result_code) { |
77 // Android WebView does not use default MessageLoop. It has its own | 81 // Android WebView does not use default MessageLoop. It has its own |
78 // Android specific MessageLoop. | 82 // Android specific MessageLoop. |
79 return true; | 83 return true; |
80 } | 84 } |
81 | 85 |
82 } // namespace android_webview | 86 } // namespace android_webview |
OLD | NEW |