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

Side by Side Diff: chrome/browser/resources/safe_browsing/safe_browsing.js

Issue 2940963002: Added the chrome://safe-browsing/ page as part of the chrome://about (Closed)
Patch Set: Changed the overall location of several files to base them on components/ Created 3 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/ui/BUILD.gn » ('j') | components/safe_browsing/web_ui/constants.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* Copyright 2017 The Chromium Authors. All rights reserved.
vakh (use Gerrit instead) 2017/06/23 18:52:02 This file should no longer be needed.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 cr.define('safe_browsing', function() {
6 'use strict';
7
8 /**
9 * Translate the message on loading the page.
10 */
11 function initialize() {
12 $('sb-under-construction-message').textContent =
13 loadTimeData.getStringF('sbUnderConstructionMessage');
14 }
15
16 return {
17 initialize: initialize,
18 };
19 });
20
21 document.addEventListener('DOMContentLoaded', safe_browsing.initialize);
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/BUILD.gn » ('j') | components/safe_browsing/web_ui/constants.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698