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

Side by Side Diff: sky/engine/bindings-dart/dart_master.cc

Issue 894753002: Rename dart_master.cpp to .cc, consistent with chromium style (Closed) Base URL: https://github.com/eseidel/skydart.git@master
Patch Set: Created 5 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 unified diff | Download patch
« no previous file with comments | « sky/engine/bindings-dart/BUILD.gn ('k') | sky/engine/bindings-dart/dart_master.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include "sky/engine/config.h" 1 #include "sky/engine/config.h"
2 #include "sky/engine/bindings-dart/dart_master.h" 2 #include "sky/engine/bindings-dart/dart_master.h"
3 3
4 #include "base/logging.h" 4 #include "base/logging.h"
5 5
6 namespace mojo { 6 namespace mojo {
7 namespace dart { 7 namespace dart {
8 8
9 extern const uint8_t* snapshot_buffer; 9 extern const uint8_t* snapshot_buffer;
10 } 10 }
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 abort(); 72 abort();
73 } 73 }
74 74
75 CHECK(Dart_IsInteger(invoke_result)); 75 CHECK(Dart_IsInteger(invoke_result));
76 Dart_Handle str = Dart_ToString(invoke_result); 76 Dart_Handle str = Dart_ToString(invoke_result);
77 const char* xyz = "invalid"; 77 const char* xyz = "invalid";
78 Dart_StringToCString(str, &xyz); 78 Dart_StringToCString(str, &xyz);
79 LOG(INFO) << xyz; 79 LOG(INFO) << xyz;
80 } 80 }
81 } 81 }
OLDNEW
« no previous file with comments | « sky/engine/bindings-dart/BUILD.gn ('k') | sky/engine/bindings-dart/dart_master.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698