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

Side by Side Diff: chrome/renderer/webworker_proxy.h

Issue 5978003: Make IPC::Channel::Listener:OnMessageReceived have a return value indicating ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/renderer/websharedworker_proxy.cc ('k') | chrome/renderer/webworker_proxy.cc » ('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 (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #ifndef CHROME_RENDERER_WEBWORKER_PROXY_H_ 5 #ifndef CHROME_RENDERER_WEBWORKER_PROXY_H_
6 #define CHROME_RENDERER_WEBWORKER_PROXY_H_ 6 #define CHROME_RENDERER_WEBWORKER_PROXY_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 25 matching lines...) Expand all
36 const WebKit::WebString& user_agent, 36 const WebKit::WebString& user_agent,
37 const WebKit::WebString& source_code); 37 const WebKit::WebString& source_code);
38 virtual void terminateWorkerContext(); 38 virtual void terminateWorkerContext();
39 virtual void postMessageToWorkerContext( 39 virtual void postMessageToWorkerContext(
40 const WebKit::WebString& message, 40 const WebKit::WebString& message,
41 const WebKit::WebMessagePortChannelArray& channel_array); 41 const WebKit::WebMessagePortChannelArray& channel_array);
42 virtual void workerObjectDestroyed(); 42 virtual void workerObjectDestroyed();
43 virtual void clientDestroyed(); 43 virtual void clientDestroyed();
44 44
45 // IPC::Channel::Listener implementation. 45 // IPC::Channel::Listener implementation.
46 virtual void OnMessageReceived(const IPC::Message& message); 46 virtual bool OnMessageReceived(const IPC::Message& message);
47 47
48 private: 48 private:
49 void CancelCreation(); 49 void CancelCreation();
50 void OnWorkerCreated(); 50 void OnWorkerCreated();
51 void OnWorkerContextDestroyed(); 51 void OnWorkerContextDestroyed();
52 void OnPostMessage(const string16& message, 52 void OnPostMessage(const string16& message,
53 const std::vector<int>& sent_message_port_ids, 53 const std::vector<int>& sent_message_port_ids,
54 const std::vector<int>& new_routing_ids); 54 const std::vector<int>& new_routing_ids);
55 void OnPostConsoleMessageToWorkerObject( 55 void OnPostConsoleMessageToWorkerObject(
56 const WorkerHostMsg_PostConsoleMessageToWorkerObject_Params& params); 56 const WorkerHostMsg_PostConsoleMessageToWorkerObject_Params& params);
57 57
58 58
59 // Used to communicate to the WebCore::Worker object in response to IPC 59 // Used to communicate to the WebCore::Worker object in response to IPC
60 // messages. 60 // messages.
61 WebKit::WebWorkerClient* client_; 61 WebKit::WebWorkerClient* client_;
62 62
63 DISALLOW_COPY_AND_ASSIGN(WebWorkerProxy); 63 DISALLOW_COPY_AND_ASSIGN(WebWorkerProxy);
64 }; 64 };
65 65
66 #endif // CHROME_RENDERER_WEBWORKER_PROXY_H_ 66 #endif // CHROME_RENDERER_WEBWORKER_PROXY_H_
OLDNEW
« no previous file with comments | « chrome/renderer/websharedworker_proxy.cc ('k') | chrome/renderer/webworker_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698