summaryrefslogtreecommitdiffstats
path: root/ui/file_manager/image_loader
diff options
context:
space:
mode:
Diffstat (limited to 'ui/file_manager/image_loader')
-rw-r--r--ui/file_manager/image_loader/background.js2
-rw-r--r--ui/file_manager/image_loader/cache.js2
-rw-r--r--ui/file_manager/image_loader/image_loader.js2
-rw-r--r--ui/file_manager/image_loader/image_loader_client.js2
-rw-r--r--ui/file_manager/image_loader/request.js2
-rw-r--r--ui/file_manager/image_loader/scheduler.js2
6 files changed, 0 insertions, 12 deletions
diff --git a/ui/file_manager/image_loader/background.js b/ui/file_manager/image_loader/background.js
index 028a082..bdfac1c 100644
--- a/ui/file_manager/image_loader/background.js
+++ b/ui/file_manager/image_loader/background.js
@@ -2,7 +2,5 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-'use strict';
-
// Load the extension.
ImageLoader.getInstance();
diff --git a/ui/file_manager/image_loader/cache.js b/ui/file_manager/image_loader/cache.js
index 5bdb2be..478bccd 100644
--- a/ui/file_manager/image_loader/cache.js
+++ b/ui/file_manager/image_loader/cache.js
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-'use strict';
-
/**
* Persistent cache storing images in an indexed database on the hard disk.
* @constructor
diff --git a/ui/file_manager/image_loader/image_loader.js b/ui/file_manager/image_loader/image_loader.js
index e45c084..abd183d 100644
--- a/ui/file_manager/image_loader/image_loader.js
+++ b/ui/file_manager/image_loader/image_loader.js
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-'use strict';
-
/**
* Loads and resizes an image.
* @constructor
diff --git a/ui/file_manager/image_loader/image_loader_client.js b/ui/file_manager/image_loader/image_loader_client.js
index 6dfef8e..88bdaaf 100644
--- a/ui/file_manager/image_loader/image_loader_client.js
+++ b/ui/file_manager/image_loader/image_loader_client.js
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-'use strict';
-
/**
* Client used to connect to the remote ImageLoader extension. Client class runs
* in the extension, where the client.js is included (eg. Files.app).
diff --git a/ui/file_manager/image_loader/request.js b/ui/file_manager/image_loader/request.js
index 1b1f0df..767b878 100644
--- a/ui/file_manager/image_loader/request.js
+++ b/ui/file_manager/image_loader/request.js
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-'use strict';
-
/**
* @typedef {{
* cache: (boolean|undefined),
diff --git a/ui/file_manager/image_loader/scheduler.js b/ui/file_manager/image_loader/scheduler.js
index 844a122..b0f841b 100644
--- a/ui/file_manager/image_loader/scheduler.js
+++ b/ui/file_manager/image_loader/scheduler.js
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-'use strict';
-
/**
* Scheduler for requests. Fetches requests from a queue and processes them
* synchronously, taking into account priorities. The highest priority is 0.