Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(581)

Unified Diff: shell/context.h

Issue 1341873002: Enabling 64-bit mojo shell to launch 32-bit child to handle nonsfi content. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: shell/context.h
diff --git a/shell/context.h b/shell/context.h
index 7760f6dd8d2fac461748494b87678ff9b0a0a88f..3ef17ab7874cc29b3e5a8dc6b0af86038015c8bb 100644
--- a/shell/context.h
+++ b/shell/context.h
@@ -64,6 +64,11 @@ class Context : public ApplicationManager::Delegate,
const base::FilePath& mojo_shell_child_path() const {
return mojo_shell_child_path_;
}
+
+ const base::FilePath& mojo_shell_child_path_32_bit() const {
+ return mojo_shell_child_path_32_bit_;
+ }
+
TaskRunners* task_runners() { return task_runners_.get(); }
private:
@@ -84,6 +89,7 @@ class Context : public ApplicationManager::Delegate,
URLResolver url_resolver_;
base::FilePath mojo_shell_child_path_;
+ base::FilePath mojo_shell_child_path_32_bit_;
Petr Hosek 2015/09/14 19:13:52 Do you really need a separate variable for the 32-
Sean Klein 2015/09/15 18:37:50 Done.
scoped_ptr<TaskRunners> task_runners_;
std::set<GURL> app_urls_;

Powered by Google App Engine
This is Rietveld 408576698