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

Unified Diff: tools/json_schema_compiler/cpp_type_generator_test.py

Issue 12283025: JSON Compiler should convert the namespace value in lowerCamelCase to unix_name for the referenced … (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: JSON Compiler should convert the namespace value in lowerCamelCase to unix_name for the referenced … Created 7 years, 10 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 | « tools/json_schema_compiler/cpp_type_generator.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/json_schema_compiler/cpp_type_generator_test.py
===================================================================
--- tools/json_schema_compiler/cpp_type_generator_test.py (revision 184218)
+++ tools/json_schema_compiler/cpp_type_generator_test.py (working copy)
@@ -71,9 +71,9 @@
self.assertEquals('#include "path/to/browser_action.h"\n'
'#include "path/to/font_settings.h"',
manager.GenerateIncludes().Render())
- self.assertEquals('namespace browserAction {\n'
+ self.assertEquals('namespace browser_action {\n'
'}\n'
- 'namespace fontSettings {\n'
+ 'namespace font_settings {\n'
'}',
manager.GenerateForwardDeclarations().Render())
« no previous file with comments | « tools/json_schema_compiler/cpp_type_generator.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698