diff options
author | marja@chromium.org <marja@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-14 14:22:07 +0000 |
---|---|---|
committer | marja@chromium.org <marja@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-14 14:22:07 +0000 |
commit | 7e49ad360632304e1890082e1605b2239956afdb (patch) | |
tree | 1e3451b1a1af73cc5996c218a2888e35f1337709 /chrome_frame | |
parent | facd6e7bd32c811fa8be9a065505f465396cd92e (diff) | |
download | chromium_src-7e49ad360632304e1890082e1605b2239956afdb.zip chromium_src-7e49ad360632304e1890082e1605b2239956afdb.tar.gz chromium_src-7e49ad360632304e1890082e1605b2239956afdb.tar.bz2 |
Move guid generation from chrome/common/ to base/.
It will be needed in webkit/dom_storage/.
BUG=NONE
TEST=Existing tests.
Review URL: https://chromiumcodereview.appspot.com/10540003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142142 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/find_dialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome_frame/find_dialog.cc b/chrome_frame/find_dialog.cc index 2c10866..249fadb 100644 --- a/chrome_frame/find_dialog.cc +++ b/chrome_frame/find_dialog.cc @@ -6,8 +6,8 @@ #include <richedit.h> +#include "base/guid.h" #include "base/utf_string_conversions.h" -#include "chrome/common/guid.h" #include "chrome_frame/chrome_frame_automation.h" const int kMaxFindChars = 1024; @@ -26,7 +26,7 @@ LRESULT CFFindDialog::OnDestroy(UINT msg, WPARAM wparam, LPARAM lparam, // do a fake search for a string that is unlikely to appear on the page. // TODO(robertshield): Change this to plumb through a StopFinding automation // message that triggers a ViewMsg_StopFinding. - std::string guid(guid::GenerateGUID()); + std::string guid(base::GenerateGUID()); automation_client_->FindInPage(ASCIIToWide(guid), FWD, CASE_SENSITIVE, false); UninstallMessageHook(); |