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

Unified Diff: content/browser/browser_context.h

Issue 8760024: Cross-process postMessage (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: New patch, still not quite done 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
Index: content/browser/browser_context.h
diff --git a/content/browser/browser_context.h b/content/browser/browser_context.h
index 2477af5edecf71176dfeb8c6f2d9c1ce0a571328..7abc1245e78edcf289005f05336cf1996e958589 100644
--- a/content/browser/browser_context.h
+++ b/content/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,10 @@ class BrowserContext {
virtual ChromeBlobStorageContext* GetBlobStorageContext() = 0;
virtual ChromeAppCacheService* GetAppCacheService() = 0;
virtual fileapi::FileSystemContext* GetFileSystemContext() = 0;
+
+ FrameMap& frame_mapper() { return frame_mapper_; }
+ private:
+ FrameMap frame_mapper_;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698