| Index: chrome/browser/extensions/extension_function.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/extension_function.cc (revision 29830)
|
| +++ chrome/browser/extensions/extension_function.cc (working copy)
|
| @@ -4,7 +4,7 @@
|
|
|
| #include "chrome/browser/extensions/extension_function.h"
|
|
|
| -#include "base/json_writer.h"
|
| +#include "base/json/json_writer.h"
|
| #include "base/logging.h"
|
| #include "chrome/browser/extensions/extension_function_dispatcher.h"
|
|
|
| @@ -17,7 +17,7 @@
|
| std::string json;
|
| // Some functions might not need to return any results.
|
| if (result_.get())
|
| - JSONWriter::Write(result_.get(), false, &json);
|
| + base::JSONWriter::Write(result_.get(), false, &json);
|
| return json;
|
| }
|
|
|
|
|
| Property changes on: chrome/browser/extensions/extension_function.cc
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|