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

Side by Side Diff: content/child/db_message_filter.h

Issue 1548993002: Switch to standard integer types in base/strings/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CONTENT_CHILD_DB_MESSAGE_FILTER_H_ 5 #ifndef CONTENT_CHILD_DB_MESSAGE_FILTER_H_
6 #define CONTENT_CHILD_DB_MESSAGE_FILTER_H_ 6 #define CONTENT_CHILD_DB_MESSAGE_FILTER_H_
7 7
8 #include "base/basictypes.h"
8 #include "base/strings/string16.h" 9 #include "base/strings/string16.h"
9 #include "ipc/message_filter.h" 10 #include "ipc/message_filter.h"
10 11
11 namespace content { 12 namespace content {
12 13
13 // Receives database messages from the browser process and processes them on the 14 // Receives database messages from the browser process and processes them on the
14 // IO thread. 15 // IO thread.
15 class DBMessageFilter : public IPC::MessageFilter { 16 class DBMessageFilter : public IPC::MessageFilter {
16 public: 17 public:
17 DBMessageFilter(); 18 DBMessageFilter();
(...skipping 11 matching lines...) Expand all
29 void OnDatabaseUpdateSpaceAvailable(const std::string& origin_identifier, 30 void OnDatabaseUpdateSpaceAvailable(const std::string& origin_identifier,
30 int64 space_available); 31 int64 space_available);
31 void OnDatabaseResetSpaceAvailable(const std::string& origin_identifier); 32 void OnDatabaseResetSpaceAvailable(const std::string& origin_identifier);
32 void OnDatabaseCloseImmediately(const std::string& origin_identifier, 33 void OnDatabaseCloseImmediately(const std::string& origin_identifier,
33 const base::string16& database_name); 34 const base::string16& database_name);
34 }; 35 };
35 36
36 } // namespace content 37 } // namespace content
37 38
38 #endif // CONTENT_CHILD_DB_MESSAGE_FILTER_H_ 39 #endif // CONTENT_CHILD_DB_MESSAGE_FILTER_H_
OLDNEW
« no previous file with comments | « content/browser/webui/generic_handler.h ('k') | content/child/indexed_db/mock_webidbcallbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698