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

Side by Side Diff: content/renderer/mojo_context_state.cc

Issue 1468903002: Rename some WebUI Mojo concepts to be more generic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « content/renderer/mojo_context_state.h ('k') | content/renderer/mojo_main_runner.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/renderer/web_ui_mojo_context_state.h" 5 #include "content/renderer/mojo_context_state.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/stl_util.h" 8 #include "base/stl_util.h"
9 #include "content/public/renderer/render_frame.h" 9 #include "content/public/renderer/render_frame.h"
10 #include "content/public/renderer/resource_fetcher.h" 10 #include "content/public/renderer/resource_fetcher.h"
11 #include "content/renderer/web_ui_runner.h" 11 #include "content/renderer/mojo_main_runner.h"
12 #include "gin/converter.h" 12 #include "gin/converter.h"
13 #include "gin/modules/module_registry.h" 13 #include "gin/modules/module_registry.h"
14 #include "gin/per_context_data.h" 14 #include "gin/per_context_data.h"
15 #include "gin/public/context_holder.h" 15 #include "gin/public/context_holder.h"
16 #include "gin/try_catch.h" 16 #include "gin/try_catch.h"
17 #include "third_party/WebKit/public/platform/WebURLResponse.h" 17 #include "third_party/WebKit/public/platform/WebURLResponse.h"
18 #include "third_party/WebKit/public/web/WebFrame.h" 18 #include "third_party/WebKit/public/web/WebFrame.h"
19 #include "third_party/WebKit/public/web/WebScriptSource.h" 19 #include "third_party/WebKit/public/web/WebScriptSource.h"
20 20
21 using v8::Context; 21 using v8::Context;
(...skipping 14 matching lines...) Expand all
36 void RunMain(base::WeakPtr<gin::Runner> runner, 36 void RunMain(base::WeakPtr<gin::Runner> runner,
37 v8::Local<v8::Value> module) { 37 v8::Local<v8::Value> module) {
38 v8::Isolate* isolate = runner->GetContextHolder()->isolate(); 38 v8::Isolate* isolate = runner->GetContextHolder()->isolate();
39 v8::Local<v8::Function> start; 39 v8::Local<v8::Function> start;
40 CHECK(gin::ConvertFromV8(isolate, module, &start)); 40 CHECK(gin::ConvertFromV8(isolate, module, &start));
41 runner->Call(start, runner->global(), 0, NULL); 41 runner->Call(start, runner->global(), 0, NULL);
42 } 42 }
43 43
44 } // namespace 44 } // namespace
45 45
46 // WebUIMojo ------------------------------------------------------------------- 46 MojoContextState::MojoContextState(blink::WebFrame* frame,
47 47 v8::Local<v8::Context> context)
48 WebUIMojoContextState::WebUIMojoContextState(blink::WebFrame* frame,
49 v8::Local<v8::Context> context)
50 : frame_(frame), 48 : frame_(frame),
51 module_added_(false) { 49 module_added_(false) {
52 gin::PerContextData* context_data = gin::PerContextData::From(context); 50 gin::PerContextData* context_data = gin::PerContextData::From(context);
53 gin::ContextHolder* context_holder = context_data->context_holder(); 51 gin::ContextHolder* context_holder = context_data->context_holder();
54 runner_.reset(new WebUIRunner(frame_, context_holder)); 52 runner_.reset(new MojoMainRunner(frame_, context_holder));
55 gin::Runner::Scope scoper(runner_.get()); 53 gin::Runner::Scope scoper(runner_.get());
56 gin::ModuleRegistry::From(context)->AddObserver(this); 54 gin::ModuleRegistry::From(context)->AddObserver(this);
57 content::RenderFrame::FromWebFrame(frame) 55 content::RenderFrame::FromWebFrame(frame)
58 ->EnsureMojoBuiltinsAreAvailable(context_holder->isolate(), context); 56 ->EnsureMojoBuiltinsAreAvailable(context_holder->isolate(), context);
59 gin::ModuleRegistry::InstallGlobals(context->GetIsolate(), context->Global()); 57 gin::ModuleRegistry::InstallGlobals(context->GetIsolate(), context->Global());
60 // Warning |frame| may be destroyed. 58 // Warning |frame| may be destroyed.
61 // TODO(sky): add test for this. 59 // TODO(sky): add test for this.
62 } 60 }
63 61
64 WebUIMojoContextState::~WebUIMojoContextState() { 62 MojoContextState::~MojoContextState() {
65 gin::Runner::Scope scoper(runner_.get()); 63 gin::Runner::Scope scoper(runner_.get());
66 gin::ModuleRegistry::From( 64 gin::ModuleRegistry::From(
67 runner_->GetContextHolder()->context())->RemoveObserver(this); 65 runner_->GetContextHolder()->context())->RemoveObserver(this);
68 } 66 }
69 67
70 void WebUIMojoContextState::Run() { 68 void MojoContextState::Run() {
71 gin::ContextHolder* context_holder = runner_->GetContextHolder(); 69 gin::ContextHolder* context_holder = runner_->GetContextHolder();
72 gin::ModuleRegistry::From(context_holder->context())->LoadModule( 70 gin::ModuleRegistry::From(context_holder->context())->LoadModule(
73 context_holder->isolate(), 71 context_holder->isolate(),
74 "main", 72 "main",
75 base::Bind(RunMain, runner_->GetWeakPtr())); 73 base::Bind(RunMain, runner_->GetWeakPtr()));
76 } 74 }
77 75
78 void WebUIMojoContextState::FetchModules(const std::vector<std::string>& ids) { 76 void MojoContextState::FetchModules(const std::vector<std::string>& ids) {
79 gin::Runner::Scope scoper(runner_.get()); 77 gin::Runner::Scope scoper(runner_.get());
80 gin::ContextHolder* context_holder = runner_->GetContextHolder(); 78 gin::ContextHolder* context_holder = runner_->GetContextHolder();
81 gin::ModuleRegistry* registry = gin::ModuleRegistry::From( 79 gin::ModuleRegistry* registry = gin::ModuleRegistry::From(
82 context_holder->context()); 80 context_holder->context());
83 for (size_t i = 0; i < ids.size(); ++i) { 81 for (size_t i = 0; i < ids.size(); ++i) {
84 if (fetched_modules_.find(ids[i]) == fetched_modules_.end() && 82 if (fetched_modules_.find(ids[i]) == fetched_modules_.end() &&
85 registry->available_modules().count(ids[i]) == 0) { 83 registry->available_modules().count(ids[i]) == 0) {
86 FetchModule(ids[i]); 84 FetchModule(ids[i]);
87 } 85 }
88 } 86 }
89 } 87 }
90 88
91 void WebUIMojoContextState::FetchModule(const std::string& id) { 89 void MojoContextState::FetchModule(const std::string& id) {
92 const GURL url(kModulePrefix + id); 90 const GURL url(kModulePrefix + id);
93 // TODO(sky): better error checks here? 91 // TODO(sky): better error checks here?
94 DCHECK(url.is_valid() && !url.is_empty()); 92 DCHECK(url.is_valid() && !url.is_empty());
95 DCHECK(fetched_modules_.find(id) == fetched_modules_.end()); 93 DCHECK(fetched_modules_.find(id) == fetched_modules_.end());
96 fetched_modules_.insert(id); 94 fetched_modules_.insert(id);
97 ResourceFetcher* fetcher = ResourceFetcher::Create(url); 95 ResourceFetcher* fetcher = ResourceFetcher::Create(url);
98 module_fetchers_.push_back(fetcher); 96 module_fetchers_.push_back(fetcher);
99 fetcher->Start(frame_, 97 fetcher->Start(frame_,
100 blink::WebURLRequest::RequestContextScript, 98 blink::WebURLRequest::RequestContextScript,
101 blink::WebURLRequest::FrameTypeNone, 99 blink::WebURLRequest::FrameTypeNone,
102 ResourceFetcher::PLATFORM_LOADER, 100 ResourceFetcher::PLATFORM_LOADER,
103 base::Bind(&WebUIMojoContextState::OnFetchModuleComplete, 101 base::Bind(&MojoContextState::OnFetchModuleComplete,
104 base::Unretained(this), 102 base::Unretained(this), fetcher));
105 fetcher));
106 } 103 }
107 104
108 void WebUIMojoContextState::OnFetchModuleComplete( 105 void MojoContextState::OnFetchModuleComplete(
109 ResourceFetcher* fetcher, 106 ResourceFetcher* fetcher,
110 const blink::WebURLResponse& response, 107 const blink::WebURLResponse& response,
111 const std::string& data) { 108 const std::string& data) {
112 DCHECK_EQ(kModulePrefix, 109 DCHECK_EQ(kModulePrefix,
113 response.url().string().utf8().substr(0, arraysize(kModulePrefix) - 1)); 110 response.url().string().utf8().substr(0, arraysize(kModulePrefix) - 1));
114 const std::string module = 111 const std::string module =
115 response.url().string().utf8().substr(arraysize(kModulePrefix) - 1); 112 response.url().string().utf8().substr(arraysize(kModulePrefix) - 1);
116 // We can't delete fetch right now as the arguments to this function come from 113 // We can't delete fetch right now as the arguments to this function come from
117 // it and are used below. Instead use a scope_ptr to cleanup. 114 // it and are used below. Instead use a scope_ptr to cleanup.
118 scoped_ptr<ResourceFetcher> deleter(fetcher); 115 scoped_ptr<ResourceFetcher> deleter(fetcher);
119 module_fetchers_.weak_erase( 116 module_fetchers_.weak_erase(
120 std::find(module_fetchers_.begin(), module_fetchers_.end(), fetcher)); 117 std::find(module_fetchers_.begin(), module_fetchers_.end(), fetcher));
121 if (data.empty()) { 118 if (data.empty()) {
122 NOTREACHED(); 119 NOTREACHED();
123 return; // TODO(sky): log something? 120 return; // TODO(sky): log something?
124 } 121 }
125 122
126 runner_->Run(data, module); 123 runner_->Run(data, module);
127 } 124 }
128 125
129 void WebUIMojoContextState::OnDidAddPendingModule( 126 void MojoContextState::OnDidAddPendingModule(
130 const std::string& id, 127 const std::string& id,
131 const std::vector<std::string>& dependencies) { 128 const std::vector<std::string>& dependencies) {
132 FetchModules(dependencies); 129 FetchModules(dependencies);
133 130
134 gin::ContextHolder* context_holder = runner_->GetContextHolder(); 131 gin::ContextHolder* context_holder = runner_->GetContextHolder();
135 gin::ModuleRegistry* registry = gin::ModuleRegistry::From( 132 gin::ModuleRegistry* registry = gin::ModuleRegistry::From(
136 context_holder->context()); 133 context_holder->context());
137 registry->AttemptToLoadMoreModules(context_holder->isolate()); 134 registry->AttemptToLoadMoreModules(context_holder->isolate());
138 } 135 }
139 136
140 } // namespace content 137 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/mojo_context_state.h ('k') | content/renderer/mojo_main_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698