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

Side by Side Diff: chrome/browser/extensions/api/offscreen_tabs/offscreen_tabs_api.cc

Issue 10514013: Filtered events. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, reland Created 8 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "chrome/browser/extensions/api/offscreen_tabs/offscreen_tabs_api.h" 5 #include "chrome/browser/extensions/api/offscreen_tabs/offscreen_tabs_api.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/hash_tables.h" 10 #include "base/hash_tables.h"
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 ExtensionTabUtil::GetTabId(web_contents()))); 269 ExtensionTabUtil::GetTabId(web_contents())));
270 args.Append(changed_properties); 270 args.Append(changed_properties);
271 args.Append(CreateValue()); 271 args.Append(CreateValue());
272 std::string json_args; 272 std::string json_args;
273 base::JSONWriter::Write(&args, &json_args); 273 base::JSONWriter::Write(&args, &json_args);
274 274
275 // The event router only dispatches the event to renderers listening for the 275 // The event router only dispatches the event to renderers listening for the
276 // event. 276 // event.
277 Profile* profile = parent_tab_->tab_contents()->profile(); 277 Profile* profile = parent_tab_->tab_contents()->profile();
278 profile->GetExtensionEventRouter()->DispatchEventToRenderers( 278 profile->GetExtensionEventRouter()->DispatchEventToRenderers(
279 events::kOnOffscreenTabUpdated, json_args, profile, GURL()); 279 events::kOnOffscreenTabUpdated, json_args, profile, GURL(),
280 extensions::EventFilteringInfo());
280 } 281 }
281 282
282 ParentTab::ParentTab() : tab_contents_(NULL) {} 283 ParentTab::ParentTab() : tab_contents_(NULL) {}
283 ParentTab::~ParentTab() {} 284 ParentTab::~ParentTab() {}
284 285
285 void ParentTab::Init(WebContents* web_contents, 286 void ParentTab::Init(WebContents* web_contents,
286 const std::string& extension_id) { 287 const std::string& extension_id) {
287 CHECK(web_contents); 288 CHECK(web_contents);
288 289
289 extension_id_ = extension_id; 290 extension_id_ = extension_id;
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 // async case (when a "javascript": URL is sent to a tab). 832 // async case (when a "javascript": URL is sent to a tab).
832 if (!is_async) 833 if (!is_async)
833 SendResponse(true); 834 SendResponse(true);
834 835
835 return true; 836 return true;
836 } 837 }
837 838
838 void UpdateOffscreenTabFunction::PopulateResult() { 839 void UpdateOffscreenTabFunction::PopulateResult() {
839 // There's no result associated with this callback. 840 // There's no result associated with this callback.
840 } 841 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698