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

Unified Diff: chrome/browser/extensions/extension_window_controller.cc

Issue 10407035: Extension/Platform App window isolation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add "ForFunction" Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_window_controller.cc
diff --git a/chrome/browser/extensions/extension_window_controller.cc b/chrome/browser/extensions/extension_window_controller.cc
index 90ad89fd00a9e2c6aa6e75403d98a0c3b3543ab1..bf81a94927d109522574a68c5dbcf76ddfe2133b 100644
--- a/chrome/browser/extensions/extension_window_controller.cc
+++ b/chrome/browser/extensions/extension_window_controller.cc
@@ -25,15 +25,6 @@ ExtensionWindowController::~ExtensionWindowController() {
ExtensionWindowList::GetInstance()->RemoveExtensionWindow(this);
}
-bool ExtensionWindowController::MatchesProfile(
- Profile* match_profile,
- ProfileMatchType match_type) const {
- return ((profile_ == match_profile) ||
- (match_type == MATCH_INCOGNITO &&
- (match_profile->HasOffTheRecordProfile() &&
- match_profile->GetOffTheRecordProfile() == profile_)));
-}
-
Browser* ExtensionWindowController::GetBrowser() const {
return NULL;
}
« no previous file with comments | « chrome/browser/extensions/extension_window_controller.h ('k') | chrome/browser/extensions/extension_window_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698