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

Unified Diff: chrome/test/pyautolib/pyautolib.h

Issue 6962035: Build pyautolib target under clang (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove virtual Created 9 years, 7 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/test/pyautolib/pyautolib.h
diff --git a/chrome/test/pyautolib/pyautolib.h b/chrome/test/pyautolib/pyautolib.h
index 9a15614f917ab4996770ae7c8a1238aac8d6b035..cd5aa22c71dc398ef996c8cbc7d83ef638eb4018 100644
--- a/chrome/test/pyautolib/pyautolib.h
+++ b/chrome/test/pyautolib/pyautolib.h
@@ -26,9 +26,9 @@
class PyUITestSuiteBase : public UITestSuite {
public:
PyUITestSuiteBase(int argc, char** argv);
- ~PyUITestSuiteBase();
+ virtual ~PyUITestSuiteBase();
- void Initialize(const FilePath& browser_dir);
+ void InitializeWithPath(const FilePath& browser_dir);
void SetCrSourceRoot(const FilePath& path);
@@ -44,7 +44,7 @@ class PyUITestBase : public UITestBase {
// Constructor. Lookup pyauto.py for doc on these args.
PyUITestBase(bool clear_profile, std::wstring homepage);
- ~PyUITestBase();
+ virtual ~PyUITestBase();
// Initialize the setup. Should be called before launching the browser.
// |browser_dir| is the path to dir containing chromium binaries.

Powered by Google App Engine
This is Rietveld 408576698