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

Unified Diff: chrome/browser/extensions/extension_toolstrip_api.cc

Issue 316016: Move the json-related files into a separate json directory. This hopefully al... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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/extension_toolstrip_api.cc
===================================================================
--- chrome/browser/extensions/extension_toolstrip_api.cc (revision 29830)
+++ chrome/browser/extensions/extension_toolstrip_api.cc (working copy)
@@ -4,7 +4,7 @@
#include "chrome/browser/extensions/extension_toolstrip_api.h"
-#include "base/json_writer.h"
+#include "base/json/json_writer.h"
#include "base/string_util.h"
#include "chrome/browser/browser.h"
#include "chrome/browser/extensions/extension_host.h"
@@ -131,7 +131,7 @@
const Value& json) {
if (profile->GetExtensionMessageService()) {
std::string json_args;
- JSONWriter::Write(&json, false, &json_args);
+ base::JSONWriter::Write(&json, false, &json_args);
std::string full_event_name = StringPrintf(event_name, routing_id);
profile->GetExtensionMessageService()->
DispatchEventToRenderers(full_event_name, json_args);
Property changes on: chrome/browser/extensions/extension_toolstrip_api.cc
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/extensions/extension_message_service.cc ('k') | chrome/browser/extensions/extension_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698