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

Unified Diff: build/android/tests/symbolize/a.cc

Issue 18473004: Android: adds stack symbolization utilities. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « build/android/tests/symbolize/Makefile ('k') | build/android/tests/symbolize/b.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/tests/symbolize/a.cc
diff --git a/chrome/test/data/extensions/api_test/webnavigation/getFrame/b.js b/build/android/tests/symbolize/a.cc
similarity index 56%
copy from chrome/test/data/extensions/api_test/webnavigation/getFrame/b.js
copy to build/android/tests/symbolize/a.cc
index 425f0e59b89b58dfbf5fc84051df78f9ff1493d0..5c06b251108f482256f1e9b3024ac0db62cc3b39 100644
--- a/chrome/test/data/extensions/api_test/webnavigation/getFrame/b.js
+++ b/build/android/tests/symbolize/a.cc
@@ -2,8 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-onload = function() {
- var frame = document.getElementById('frame');
- frame.parentNode.removeChild(frame);
- frame = null;
+class A {
+ public:
+ A();
+ void Foo(int i);
+ void Bar(const char* c);
};
+
+A::A() {}
+void A::Foo(int i) {}
+void A::Bar(const char* c) {}
« no previous file with comments | « build/android/tests/symbolize/Makefile ('k') | build/android/tests/symbolize/b.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698