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

Unified Diff: third_party/WebKit/Source/core/workers/SharedWorkerRepositoryClient.h

Issue 2604733002: SharedWorker: Make shared workers keyed by a pair of url and name (Closed)
Patch Set: clean up Created 4 years 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: third_party/WebKit/Source/core/workers/SharedWorkerRepositoryClient.h
diff --git a/third_party/WebKit/Source/core/workers/SharedWorkerRepositoryClient.h b/third_party/WebKit/Source/core/workers/SharedWorkerRepositoryClient.h
index 7f2f5bcf761b143986b93ebc7dfebaddff1b1861..cc287d86b5de04f4e40df7a105bdae117df73226 100644
--- a/third_party/WebKit/Source/core/workers/SharedWorkerRepositoryClient.h
+++ b/third_party/WebKit/Source/core/workers/SharedWorkerRepositoryClient.h
@@ -39,7 +39,6 @@
namespace blink {
class Document;
-class ExceptionState;
class KURL;
class SharedWorker;
@@ -54,8 +53,7 @@ class SharedWorkerRepositoryClient {
virtual void connect(SharedWorker*,
WebMessagePortChannelUniquePtr,
const KURL&,
- const String& name,
- ExceptionState&) = 0;
+ const String& name) = 0;
virtual void documentDetached(Document*) = 0;
};

Powered by Google App Engine
This is Rietveld 408576698