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

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: Created 9 years, 1 month 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..424844c45e9a50346f0cb31a019dc2e0b7b063c4 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_mapper.h"
namespace fileapi {
class FileSystemContext;
@@ -102,6 +103,10 @@ class BrowserContext {
virtual ChromeBlobStorageContext* GetBlobStorageContext() = 0;
virtual ChromeAppCacheService* GetAppCacheService() = 0;
virtual fileapi::FileSystemContext* GetFileSystemContext() = 0;
+
+ FrameMapper& frame_mapper() { return frame_mapper_; }
+ private:
+ FrameMapper frame_mapper_;
Charlie Reis 2011/12/01 23:13:02 Hmm, you might get pushback on this. It might nee
supersat 2011/12/09 23:08:20 Are frames in different browser contexts able to s
Charlie Reis 2011/12/12 22:20:36 Yes. Picture an isolated app that opens a window
supersat 2011/12/15 19:30:49 Okay. A BrowsingInstance initially seemed like the
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698