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

Unified Diff: chrome/common/indexed_db_key.cc

Issue 6672057: Move all the message files in chrome that belong in content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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/common/indexed_db_key.cc
===================================================================
--- chrome/common/indexed_db_key.cc (revision 78395)
+++ chrome/common/indexed_db_key.cc (working copy)
@@ -1,71 +0,0 @@
-// Copyright (c) 2010 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 "chrome/common/indexed_db_key.h"
-
-#include "base/logging.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h"
-
-using WebKit::WebIDBKey;
-
-IndexedDBKey::IndexedDBKey()
- : type_(WebIDBKey::InvalidType),
- date_(0),
- number_(0) {
-}
-
-IndexedDBKey::IndexedDBKey(const WebIDBKey& key) {
- Set(key);
-}
-
-IndexedDBKey::~IndexedDBKey() {
-}
-
-void IndexedDBKey::SetNull() {
- type_ = WebIDBKey::NullType;
-}
-
-void IndexedDBKey::SetInvalid() {
- type_ = WebIDBKey::InvalidType;
-}
-
-void IndexedDBKey::SetString(const string16& string) {
- type_ = WebIDBKey::StringType;
- string_ = string;
-}
-
-void IndexedDBKey::SetDate(double date) {
- type_ = WebIDBKey::DateType;
- date_ = date;
-}
-
-void IndexedDBKey::SetNumber(double number) {
- type_ = WebIDBKey::NumberType;
- number_ = number;
-}
-
-void IndexedDBKey::Set(const WebIDBKey& key) {
- type_ = key.type();
- string_ = key.type() == WebIDBKey::StringType ?
- static_cast<string16>(key.string()) : string16();
- number_ = key.type() == WebIDBKey::NumberType ? key.number() : 0;
- date_ = key.type() == WebIDBKey::DateType ? key.date() : 0;
-}
-
-IndexedDBKey::operator WebIDBKey() const {
- switch (type_) {
- case WebIDBKey::NullType:
- return WebIDBKey::createNull();
- case WebIDBKey::StringType:
- return WebIDBKey::createString(string_);
- case WebIDBKey::DateType:
- return WebIDBKey::createDate(date_);
- case WebIDBKey::NumberType:
- return WebIDBKey::createNumber(number_);
- case WebIDBKey::InvalidType:
- return WebIDBKey::createInvalid();
- }
- NOTREACHED();
- return WebIDBKey::createInvalid();
-}

Powered by Google App Engine
This is Rietveld 408576698