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

Unified Diff: trunk/src/chrome/renderer/resources/extensions/notifications_test_util.js

Issue 296113009: Revert 272211 "Allow high-res bitmaps to be passed in from notif..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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: trunk/src/chrome/renderer/resources/extensions/notifications_test_util.js
===================================================================
--- trunk/src/chrome/renderer/resources/extensions/notifications_test_util.js (revision 272269)
+++ trunk/src/chrome/renderer/resources/extensions/notifications_test_util.js (working copy)
@@ -1,53 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// NotificationsTestUtil contains stubs for the global classes and
-// variables used by notifications_custom_bindings.js that are not
-// available with gtestjs tests.
-var require = function(library) {
- return {
- binding: {
- 'Binding': {
- 'create': function () {
- return {
- registerCustomHook: function () {},
- generate: function () {}
- };
- }
- }
- },
- sendRequest: {
- sendRequest: function () {}
- },
- }[library];
-};
-
-var requireNative = function(library) {
- return {
- notifications_private: {
- GetNotificationImageSizes: function () {
- return {
- scaleFactor: 0,
- icon: { width: 0, height: 0 },
- image: { width: 0, height: 0 },
- buttonIcon: { width: 0, height: 0}
- };
- }
- }
- }[library];
-}
-
-var exports = {};
-
-var $Array = {
- push: function (ary, val) {
- ary.push(val);
- }
-};
-
-var $Function = {
- bind: function (fn, context) {
- return fn.bind(context);
- }
-};

Powered by Google App Engine
This is Rietveld 408576698