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

Unified Diff: content/public/browser/browser_context.h

Issue 8760024: Cross-process postMessage (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Current checkpoint Created 9 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
« no previous file with comments | « content/content_browser.gypi ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/browser_context.h
diff --git a/content/public/browser/browser_context.h b/content/public/browser/browser_context.h
index 32a2bf081c689089bc10a8f8bcaf69d7816659e9..d32a66a0c04ef64158004f3f62af9ae827d608b2 100644
--- a/content/public/browser/browser_context.h
+++ b/content/public/browser/browser_context.h
@@ -7,6 +7,7 @@
#pragma once
#include "base/hash_tables.h"
+#include "content/browser/frame_map.h"
namespace fileapi {
class FileSystemContext;
@@ -102,6 +103,11 @@ class BrowserContext {
virtual ChromeBlobStorageContext* GetBlobStorageContext() = 0;
virtual ChromeAppCacheService* GetAppCacheService() = 0;
virtual fileapi::FileSystemContext* GetFileSystemContext() = 0;
+
+// TODO(supersat): Make this pure virtual and remove frame_map_.
+ virtual FrameMap* frame_mapper() { return &frame_map_; }
+ private:
+ FrameMap frame_map_;
};
} // namespace content
« no previous file with comments | « content/content_browser.gypi ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698