Pass CreateDirectory errors up to IndexedDB.
[chromium-blink-merge.git] / content / worker / shared_worker_devtools_agent.h
blobad6bc7d848910a331ae09ed7a5c30685155005b8
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
3 // found in the LICENSE file.
5 #ifndef CONTENT_WORKER_SHARED_WORKER_DEVTOOLS_AGENT_H_
6 #define CONTENT_WORKER_SHARED_WORKER_DEVTOOLS_AGENT_H_
8 #include <string>
10 #include "base/basictypes.h"
12 namespace IPC {
13 class Message;
16 namespace WebKit {
17 class WebSharedWorker;
18 class WebString;
21 namespace content {
23 class SharedWorkerDevToolsAgent {
24 public:
25 SharedWorkerDevToolsAgent(int route_id, WebKit::WebSharedWorker*);
26 ~SharedWorkerDevToolsAgent();
28 // Called on the Worker thread.
29 bool OnMessageReceived(const IPC::Message& message);
30 void SendDevToolsMessage(const WebKit::WebString&);
31 void SaveDevToolsAgentState(const WebKit::WebString& state);
33 private:
34 void OnAttach();
35 void OnReattach(const std::string&);
36 void OnDetach();
37 void OnDispatchOnInspectorBackend(const std::string& message);
38 void OnPauseWorkerContextOnStart();
39 void OnResumeWorkerContext();
41 bool Send(IPC::Message* message);
42 const int route_id_;
43 WebKit::WebSharedWorker* webworker_;
45 DISALLOW_COPY_AND_ASSIGN(SharedWorkerDevToolsAgent);
48 } // namespace content
50 #endif // CONTENT_WORKER_SHARED_WORKER_DEVTOOLS_AGENT_H_