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

Side by Side Diff: chrome/renderer/resources/extensions/ad_view_deny.js

Issue 12463015: Enable <adview> tag for packaged apps. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Merge fix. Created 7 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 var watchForTag = require("tagWatcher").watchForTag;
6
7 // Output error message to console when using <adview> tag with no permission.
8 var errorMessage = "You do not have permission to use <adview> tag." +
9 " Be sure to declare 'adview' permission in your manifest.";
10
11 window.addEventListener('DOMContentLoaded', function() {
12 watchForTag('ADVIEW', function() { console.error(errorMessage); });
13 });
OLDNEW
« no previous file with comments | « chrome/renderer/resources/extensions/ad_view_custom.js ('k') | chrome/renderer/resources/extensions/platform_app.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698