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

Unified Diff: chrome/browser/chromeos/extensions/external_filesystem_apitest.cc

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 6 Created 8 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: chrome/browser/chromeos/extensions/external_filesystem_apitest.cc
diff --git a/chrome/browser/chromeos/extensions/external_filesystem_apitest.cc b/chrome/browser/chromeos/extensions/external_filesystem_apitest.cc
index 69ec32dc19063a3c2bb39f09c644c6e5c0512302..1ec43c696549c1b6133849e64099615c5ff9b60c 100644
--- a/chrome/browser/chromeos/extensions/external_filesystem_apitest.cc
+++ b/chrome/browser/chromeos/extensions/external_filesystem_apitest.cc
@@ -160,10 +160,11 @@ class FileSystemExtensionApiTest : public ExtensionApiTest {
// Loads the extension, which temporarily starts the lazy background page
// to dispatch the onInstalled event. We wait until it shuts down again.
- const Extension* LoadExtensionAndWait(const std::string& test_name) {
+ const extensions::Extension* LoadExtensionAndWait(
+ const std::string& test_name) {
BackgroundObserver page_complete;
FilePath extdir = test_data_dir_.AppendASCII(test_name);
- const Extension* extension = LoadExtension(extdir);
+ const extensions::Extension* extension = LoadExtension(extdir);
if (extension)
page_complete.WaitUntilClosed();
return extension;

Powered by Google App Engine
This is Rietveld 408576698