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

Side by Side Diff: content/browser/shared_worker/shared_worker_host.h

Issue 194183004: Implement AllowDatabase, AllowFileSystem, AllowIndexedDB in SharedWorkerHost. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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
« no previous file with comments | « no previous file | content/browser/shared_worker/shared_worker_host.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 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 #ifndef CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_HOST_H_ 5 #ifndef CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_HOST_H_
6 #define CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_HOST_H_ 6 #define CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_HOST_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 return container_render_filter_->render_process_id(); 75 return container_render_filter_->render_process_id();
76 } 76 }
77 int worker_route_id() const { return worker_route_id_; } 77 int worker_route_id() const { return worker_route_id_; }
78 78
79 private: 79 private:
80 // Relays |message| to the SharedWorker. Takes care of parsing the message if 80 // Relays |message| to the SharedWorker. Takes care of parsing the message if
81 // it contains a message port and sending it a valid route id. 81 // it contains a message port and sending it a valid route id.
82 void RelayMessage(const IPC::Message& message, 82 void RelayMessage(const IPC::Message& message,
83 SharedWorkerMessageFilter* incoming_filter); 83 SharedWorkerMessageFilter* incoming_filter);
84 84
85 // Return a vector of all the render process/render frame IDs.
86 std::vector<std::pair<int, int> > GetRenderFrameIDsForWorker();
87
85 scoped_ptr<SharedWorkerInstance> instance_; 88 scoped_ptr<SharedWorkerInstance> instance_;
86 SharedWorkerMessageFilter* container_render_filter_; 89 SharedWorkerMessageFilter* container_render_filter_;
87 int worker_route_id_; 90 int worker_route_id_;
88 DISALLOW_COPY_AND_ASSIGN(SharedWorkerHost); 91 DISALLOW_COPY_AND_ASSIGN(SharedWorkerHost);
89 }; 92 };
90 } // namespace content 93 } // namespace content
91 94
92 #endif // CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_HOST_H_ 95 #endif // CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_HOST_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/shared_worker/shared_worker_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698