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

Unified Diff: chrome/browser/extensions/external_filesystem_extension_loader_linux.h

Issue 9963120: Introduces an additional extension loader that load extra extensions based on per-extension json fi… (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 8 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: chrome/browser/extensions/external_filesystem_extension_loader_linux.h
===================================================================
--- chrome/browser/extensions/external_filesystem_extension_loader_linux.h (revision 0)
+++ chrome/browser/extensions/external_filesystem_extension_loader_linux.h (revision 0)
@@ -0,0 +1,30 @@
+// Copyright (c) 2012 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.
+
+#ifndef CHROME_BROWSER_EXTENSIONS_EXTERNAL_FILESYSTEM_EXTENSION_LOADER_LINUX_H_
+#define CHROME_BROWSER_EXTENSIONS_EXTERNAL_FILESYSTEM_EXTENSION_LOADER_LINUX_H_
+#pragma once
+
+#include "base/compiler_specific.h"
+#include "chrome/browser/extensions/external_extension_loader.h"
+
+class ExternalFilesystemExtensionLoader : public ExternalExtensionLoader {
+ public:
+ ExternalFilesystemExtensionLoader() {}
+
+ protected:
+ virtual void StartLoading() OVERRIDE;
+
+ private:
+ friend class base::RefCountedThreadSafe<ExternalExtensionLoader>;
+
+ virtual ~ExternalFilesystemExtensionLoader() {}
+
+ void LoadOnFileThread();
+
+ DISALLOW_COPY_AND_ASSIGN(ExternalFilesystemExtensionLoader);
+};
+
+#endif
+

Powered by Google App Engine
This is Rietveld 408576698