summaryrefslogtreecommitdiffstats
path: root/content/child/db_message_filter.cc
blob: f50d080b8d885a1bd55321f922f80961d130620f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/child/db_message_filter.h"

#include "content/common/database_messages.h"
#include "third_party/WebKit/public/platform/WebString.h"
#include "third_party/WebKit/public/web/WebDatabase.h"

using blink::WebString;

namespace content {

DBMessageFilter::DBMessageFilter() {
}

bool DBMessageFilter::OnMessageReceived(const IPC::Message& message) {
  bool handled = true;
  IPC_BEGIN_MESSAGE_MAP(DBMessageFilter, message)
    IPC_MESSAGE_HANDLER(DatabaseMsg_UpdateSize, OnDatabaseUpdateSize)
    IPC_MESSAGE_HANDLER(DatabaseMsg_UpdateSpaceAvailable,
                        OnDatabaseUpdateSpaceAvailable)
    IPC_MESSAGE_HANDLER(DatabaseMsg_ResetSpaceAvailable,
                        OnDatabaseResetSpaceAvailable)
    IPC_MESSAGE_HANDLER(DatabaseMsg_CloseImmediately,
                        OnDatabaseCloseImmediately)
    IPC_MESSAGE_UNHANDLED(handled = false)
  IPC_END_MESSAGE_MAP()
  return handled;
}

void DBMessageFilter::OnDatabaseUpdateSize(const std::string& origin_identifier,
                                           const base::string16& database_name,
                                           int64 database_size) {
  blink::WebDatabase::updateDatabaseSize(
      WebString::fromUTF8(origin_identifier), database_name, database_size);
}

void DBMessageFilter::OnDatabaseUpdateSpaceAvailable(
    const std::string& origin_identifier,
    int64 space_available) {
  blink::WebDatabase::updateSpaceAvailable(
      WebString::fromUTF8(origin_identifier), space_available);
}

void DBMessageFilter::OnDatabaseResetSpaceAvailable(
    const std::string& origin_identifier) {
  blink::WebDatabase::resetSpaceAvailable(
      WebString::fromUTF8(origin_identifier));
}

void DBMessageFilter::OnDatabaseCloseImmediately(
    const std::string& origin_identifier,
    const base::string16& database_name) {
  blink::WebDatabase::closeDatabaseImmediately(
      WebString::fromUTF8(origin_identifier), database_name);
}

}  // namespace content