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

Side by Side Diff: chrome/browser/history/multipart_uitest.cc

Issue 7353026: Move app/sql/* files to sql/ directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/test/ui/ui_test.h" 5 #include "chrome/test/ui/ui_test.h"
6 6
7 #include "app/sql/connection.h"
8 #include "app/sql/statement.h"
9 #include "base/file_util.h" 7 #include "base/file_util.h"
10 #include "chrome/test/automation/automation_proxy.h" 8 #include "chrome/test/automation/automation_proxy.h"
11 #include "chrome/test/automation/browser_proxy.h" 9 #include "chrome/test/automation/browser_proxy.h"
12 #include "chrome/test/automation/tab_proxy.h" 10 #include "chrome/test/automation/tab_proxy.h"
13 #include "net/test/test_server.h" 11 #include "net/test/test_server.h"
12 #include "sql/connection.h"
13 #include "sql/statement.h"
14 14
15 namespace { 15 namespace {
16 16
17 class MultipartResponseUITest : public UITest { 17 class MultipartResponseUITest : public UITest {
18 }; 18 };
19 19
20 #if defined(NDEBUG) 20 #if defined(NDEBUG)
21 // http://code.google.com/p/chromium/issues/detail?id=37746 21 // http://code.google.com/p/chromium/issues/detail?id=37746
22 // Running this test only for release builds as it fails in debug test 22 // Running this test only for release builds as it fails in debug test
23 // runs 23 // runs
(...skipping 30 matching lines...) Expand all
54 sql::Statement statement(db.GetUniqueStatement(query.c_str())); 54 sql::Statement statement(db.GetUniqueStatement(query.c_str()));
55 EXPECT_TRUE(statement); 55 EXPECT_TRUE(statement);
56 EXPECT_TRUE(statement.Step()); 56 EXPECT_TRUE(statement.Step());
57 EXPECT_EQ(1, statement.ColumnInt(0)); 57 EXPECT_EQ(1, statement.ColumnInt(0));
58 } 58 }
59 db.Close(); 59 db.Close();
60 } 60 }
61 #endif 61 #endif
62 62
63 } // namespace 63 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/history/in_memory_url_index_unittest.cc ('k') | chrome/browser/history/starred_url_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698