Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tommy Webb
Tor Browser
Commits
72a315a1
Commit
72a315a1
authored
9 years ago
by
Wes Kocher
Browse files
Options
Downloads
Patches
Plain Diff
Backed out changeset 6435d5aab611 (bug 858680)
parent
8f53fad8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
db/sqlite3/src/sqlite.def
+0
-1
0 additions, 1 deletion
db/sqlite3/src/sqlite.def
storage/mozStorageConnection.cpp
+1
-12
1 addition, 12 deletions
storage/mozStorageConnection.cpp
with
1 addition
and
13 deletions
db/sqlite3/src/sqlite.def
+
0
−
1
View file @
72a315a1
...
...
@@ -51,7 +51,6 @@ EXPORTS
sqlite3_create_function16
sqlite3_create_module
sqlite3_data_count
sqlite3_dbstat_register
sqlite3_db_filename
sqlite3_db_handle
sqlite3_db_mutex
...
...
This diff is collapsed.
Click to expand it.
storage/mozStorageConnection.cpp
+
1
−
12
View file @
72a315a1
...
...
@@ -62,10 +62,6 @@ PRLogModuleInfo* gStorageLog = nullptr;
#define CHECK_MAINTHREAD_ABUSE() do {
/* Nothing */
} while(0)
#endif
extern
"C"
{
int
sqlite3_dbstat_register
(
sqlite3
*
db
);
}
namespace
mozilla
{
namespace
storage
{
...
...
@@ -148,14 +144,7 @@ struct Module
};
Module
gModules
[]
=
{
{
"filesystem"
,
RegisterFileSystemModule
},
{
"dbstat"
,
[](
sqlite3
*
aDatabase
,
const
char
*
aName
)
->
int
{
MOZ_ASSERT
(
!
strcmp
(
aName
,
"dbstat"
));
return
sqlite3_dbstat_register
(
aDatabase
);
}
}
{
"filesystem"
,
RegisterFileSystemModule
}
};
////////////////////////////////////////////////////////////////////////////////
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment