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

Unified Diff: chrome/test/data/extensions/api_test/bindings/chromei18nrepro/iframe.js

Issue 1433343003: [Extensions] Wait until the Window object is cleared before classifying contexts Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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: chrome/test/data/extensions/api_test/bindings/chromei18nrepro/iframe.js
diff --git a/base/test/malloc_wrapper.cc b/chrome/test/data/extensions/api_test/bindings/chromei18nrepro/iframe.js
similarity index 52%
copy from base/test/malloc_wrapper.cc
copy to chrome/test/data/extensions/api_test/bindings/chromei18nrepro/iframe.js
index eb280a3eeea52f49e534c7c5e3f6f7a40e80a750..a6da8772a7be008fb17c92996543723761f74354 100644
--- a/base/test/malloc_wrapper.cc
+++ b/chrome/test/data/extensions/api_test/bindings/chromei18nrepro/iframe.js
@@ -2,10 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
dcheng 2015/11/13 00:26:33 Maybe use --no-find-copies? This is completely unr
Devlin 2015/11/16 22:46:45 Done (sorry, extension folks are just used to igno
// found in the LICENSE file.
-#include "malloc_wrapper.h"
-
-#include <stdlib.h>
-
-void* MallocWrapper(size_t size) {
- return malloc(size);
-}
+// chrome.i18n *should* be defined, since this is an extension iframe.
+console.log(chrome.i18n);
+window.top.postMessage(chrome.i18n != undefined, '*');

Powered by Google App Engine
This is Rietveld 408576698