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

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

Issue 10701012: JSON Schema Compiler: Added event compilation. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Synced. Created 8 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/extensions/api/alarms/alarms_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/extensions/file_browser_handler_api.cc
diff --git a/chrome/browser/chromeos/extensions/file_browser_handler_api.cc b/chrome/browser/chromeos/extensions/file_browser_handler_api.cc
index d3e23681e615b9f92b068eb8503733a2e11e179e..3052980b0f00422b0156de5211cf0ac6d00424f2 100644
--- a/chrome/browser/chromeos/extensions/file_browser_handler_api.cc
+++ b/chrome/browser/chromeos/extensions/file_browser_handler_api.cc
@@ -298,8 +298,8 @@ void FileHandlerSelectFileFunction::Respond(
const std::string& file_system_name,
const GURL& file_system_root,
const FilePath& virtual_path) {
- scoped_ptr<SelectFile::Result::Result> result(
- new SelectFile::Result::Result());
+ scoped_ptr<SelectFile::Results::Result> result(
+ new SelectFile::Results::Result());
result->success = success;
if (success) {
result->entry.reset(new FileEntryInfo());
@@ -309,7 +309,7 @@ void FileHandlerSelectFileFunction::Respond(
result->entry->file_is_directory = false;
}
- SetResult(SelectFile::Result::Create(*result));
+ results_ = SelectFile::Results::Create(*result);
SendResponse(true);
}
« no previous file with comments | « no previous file | chrome/browser/extensions/api/alarms/alarms_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698