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

Side by Side Diff: content/common/indexed_db_key.h

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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 CHROME_COMMON_INDEXED_DB_KEY_H_ 5 #ifndef CONTENT_COMMON_INDEXED_DB_KEY_H_
6 #define CHROME_COMMON_INDEXED_DB_KEY_H_ 6 #define CONTENT_COMMON_INDEXED_DB_KEY_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/string16.h" 10 #include "base/string16.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h" 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h"
12 12
13 class IndexedDBKey { 13 class IndexedDBKey {
14 public: 14 public:
15 IndexedDBKey(); // Defaults to WebKit::WebIDBKey::InvalidType. 15 IndexedDBKey(); // Defaults to WebKit::WebIDBKey::InvalidType.
16 explicit IndexedDBKey(const WebKit::WebIDBKey& key); 16 explicit IndexedDBKey(const WebKit::WebIDBKey& key);
(...skipping 13 matching lines...) Expand all
30 30
31 operator WebKit::WebIDBKey() const; 31 operator WebKit::WebIDBKey() const;
32 32
33 private: 33 private:
34 WebKit::WebIDBKey::Type type_; 34 WebKit::WebIDBKey::Type type_;
35 string16 string_; 35 string16 string_;
36 double date_; 36 double date_;
37 double number_; 37 double number_;
38 }; 38 };
39 39
40 #endif // CHROME_COMMON_INDEXED_DB_KEY_H_ 40 #endif // CONTENT_COMMON_INDEXED_DB_KEY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698